A functional Roblox executor for Linux using Wine
# Clone and build
git clone https://github.com/gitwab/Wineblox-executor.git
cd Wineblox-executor
chmod +x build.sh
./build.sh
# Run
sudo ./injector sober- Inject basic scripts
- Could be unstable
- Linux OS (Ubuntu/Debian, Fedora, Arch)
- Wine (for running ROBLOX)
- GCC compiler
- Lua 5.1 development libraries
- GTK4 (optional, for GUI)
- libcurl (optional, for Script Hub)
git clone https://github.com/gitwab/Wineblox-executor.git
cd Wineblox-executor
chmod +x build.sh
./build.shmake check-deps # Verify dependencies
make # Build all componentsSee INSTALL.md for detailed instructions.
# Start ROBLOX on Wine
WINEPREFIX=~/.wine wine ~/.wine/drive_c/Program\ Files/Roblox/Versions/*/RobloxPlayerBeta.exe
# In another terminal, inject the executor
sudo ./injector sober# Specify PID manually
sudo ./injector <PID> ./sober_test_inject.so
# Custom library path
sudo ./injector sober /path/to/library.so
# Launch UI
./atingle_enhanced| Issue | Solution |
|---|---|
PTRACE_ATTACH failed: Operation not permitted |
Run with sudo or check ptrace_scope |
Process 'sober' not found |
Ensure ROBLOX is running before injection |
Cannot find libc.so.6 |
System libraries may be inaccessible |
| Build fails on dependency | Check INSTALL.md for your distro |
See INSTALL.md#troubleshooting for more detailed solutions.
make # Build everything
make check-deps # Verify dependencies
make atingle_enhanced # Enhanced UI with Script Hub
make injector # Injector only
make sober_test_inject.so # Library only
make clean # Remove built files
make help # Show all targets- Requires elevated privileges (
sudo) to attach to processes - May be detected by anti-cheat systems
- Only use on systems you own or have explicit permission
- Intended for educational and authorized testing purposes only
| Component | Type | Purpose |
|---|---|---|
Injector.c |
Source | ptrace-based process injector |
injected_lib.c |
Source | Lua runtime injected into ROBLOX |
AtingleUI_Enhanced.c |
Source | GTK4 graphical interface |
Makefile |
Build | Compilation rules and targets |
build.sh |
Script | Automated build wrapper |
Found a bug or have a feature request?
- Submit an Issue
- Create a Pull Request
- Trust me this has inf bugs
This project is released under the Unlicense - ye
- Based on AtingleExecutor
- ptrace injection technique inspired by reverse engineering community
- Lua integration for ROBLOX scripting