| Feature | Description |
|---|---|
| Fullscreen Mode | Roblox launches in fullscreen automatically with F11 + Alt+Enter + force resize |
| Auto-Start | Starts at Windows logon via Startup folder shortcut |
| Sign Up / Sign In | Local account system with SHA-256 password hashing |
| Guest Mode | Play without signing in - one click launch |
| RQBBOX Link System | Save and launch your favorite Roblox games by Place ID |
| Tix System | Earn Tix per launch and daily login bonuses with streaks |
| Custom Icons | Programmatically drawn icons - no external dependencies |
| Splash Screen | Animated splash with RQBBOX / RhysTech branding |
| Dark Theme | Modern dark UI with accent colors |
Download RobloxMode.exe from the src/ folder.
Requirements:
- Windows with .NET Framework 4.x
- C# Compiler (
csc.exe- included with .NET Framework)
Build command:
& "$env:windir\Microsoft.NET\Framework64\v4.0.30319\csc.exe" `
/target:winexe `
/out:RobloxMode.exe `
/reference:System.Windows.Forms.dll `
/reference:System.Drawing.dll `
/reference:System.Web.Extensions.dll `
Program.cs SplashForm.cs Accounts.cs Links.cs `
RobloxLauncher.cs IconProvider.cs MainForm.csOr run the build script:
.\build.ps1Double-click RobloxMode.exe or run from PowerShell:
.\RobloxMode.exeClick Settings in the launcher and check Launch at startup.
Or run the setup script:
.\src\Setup-AutoStart.ps1Remove-Item "$env:APPDATA\Microsoft\Windows\Start Menu\Programs\Startup\RobloxMode.lnk"| Command | Description |
|---|---|
.\RobloxMode.exe |
Launch the Roblox Mode GUI |
.\src\RobloxMode.ps1 |
Launch via PowerShell script |
.\src\Setup-AutoStart.ps1 |
Register auto-start at logon |
Unregister-ScheduledTask -TaskName "RobloxMode" |
Remove scheduled task |
roblox-mode/
├── assets/
│ ├── logo.svg # Project logo
│ └── banner.svg # GitHub banner
├── src/
│ ├── RobloxMode.exe # Compiled launcher
│ ├── RobloxMode.cs # Main C# source
│ ├── Program.cs # Entry point
│ ├── SplashForm.cs # Splash screen
│ ├── MainForm.cs # Main UI
│ ├── Accounts.cs # Account system
│ ├── Links.cs # Link system
│ ├── RobloxLauncher.cs # Launch & fullscreen
│ ├── IconProvider.cs # Custom icons
│ ├── RobloxMode.ps1 # PowerShell launcher
│ └── Setup-AutoStart.ps1
├── .github/
│ └── FUNDING.yml
├── .gitignore
├── LICENSE
└── README.md
- Splash Screen displays for 4 seconds with animated progress bar
- Main Launcher opens with navigation sidebar
- Play - Sign in or use Guest, then click Play Roblox
- The launcher finds the latest
RobloxPlayerBeta.exein%LOCALAPPDATA%\Roblox\Versions\ - Roblox launches maximized
- The launcher waits up to 60 seconds for the Roblox window
- Sends F11 and Alt+Enter keystrokes for fullscreen
- Force-resizes the window to cover the entire screen
- Accounts stored locally at
%LOCALAPPDATA%\RobloxMode\accounts.json - Passwords hashed with SHA-256 + salt
- 100 Tix on sign-up
- +5 Tix per Roblox launch
- +10 Tix daily login bonus with streak multiplier
- Save game names and Place IDs
- Launch directly into any Roblox game
- Stored at
%LOCALAPPDATA%\RobloxMode\links.json
- Fork the repo
- Create a branch (
git checkout -b feature/amazing) - Commit changes (
git commit -m "Add amazing feature") - Push (
git push origin feature/amazing) - Open a Pull Request
This project is licensed under the MIT License - see LICENSE for details.