boardcrawler/rbxmulti-loader — explained in plain English
Analysis updated 2026-05-18
Run two or more Roblox accounts side by side on the same Windows computer.
Let a browser extension detect whether this multi instance tool is installed.
Automate launching multiple Roblox game windows from custom launch links.
Study a working example of a custom URI protocol handler on Windows.
| boardcrawler/rbxmulti-loader | uigiuf/codex-visio-replica-workflow | zaxardery8011-design/soplint | |
|---|---|---|---|
| Stars | 49 | 47 | 39 |
| Language | PowerShell | PowerShell | PowerShell |
| Setup difficulty | easy | moderate | moderate |
| Complexity | 3/5 | 3/5 | 3/5 |
| Audience | general | developer | developer |
Figures from each repo's GitHub metadata at analysis time.
Bypasses Roblox's official single instance restriction, which the README notes is used at the user's own risk.
This repository is a small Windows utility that lets a player run more than one copy of Roblox at the same time on the same computer. Normally Roblox blocks multiple instances by locking a shared system resource so only one game window can run at once. This tool works around that lock by closing the specific handles Roblox uses to enforce it, each time a new instance is launched. It works entirely through PowerShell, with no separate executable file needed. During installation, it registers a custom link format called rbxmulti, which behaves like Roblox's own launch links but routes through this tool first. When a player clicks a launch link using this custom format, the script closes the singleton lock in any Roblox processes already running, starts a new Roblox window using the standard Roblox launch protocol, and then patches the lock again in the background for the newly opened instance. The tool also installs a small local web server that runs quietly in the background and restarts automatically on login, which browser extensions can query to check whether the tool is installed. Installation is done with a single PowerShell command that downloads the repository, copies its files into the user's local application data folder, and registers everything needed to start automatically. An uninstall script is provided to remove the URI handler, stop the background server, and delete the installed files. The repository also documents where to find its log files if something needs troubleshooting. The project is released under the MIT license and includes a clear disclaimer stating that it is not affiliated with Roblox Corporation, that it works by closing process handles at runtime, and that it is used at the user's own risk. It is aimed at Roblox players on Windows who want to run multiple accounts simultaneously and are comfortable running PowerShell scripts and browser extensions that talk to a local server.
A PowerShell tool for Windows that lets a player run multiple Roblox instances at once by bypassing Roblox's single instance lock.
Mainly PowerShell. The stack also includes PowerShell, Windows, C#.
Licensed under MIT, which allows free use, modification, and commercial use as long as you keep the copyright notice.
Setup difficulty is rated easy, with roughly 5min to a first successful run.
Mainly general.
This repo across BitVibe Labs
Don't trust strangers blindly. Verify against the repo.