Skip to content

Instantly share code, notes, and snippets.

@thefakewater
Created July 18, 2021 10:05
Show Gist options
  • Save thefakewater/d77d4e9b2e20ac31a4f99a2e65070ac7 to your computer and use it in GitHub Desktop.
Save thefakewater/d77d4e9b2e20ac31a4f99a2e65070ac7 to your computer and use it in GitHub Desktop.
This will allows you to open multiple Roblox windows
#include <windows.h>
int main()
{
/*
* OPEN THIS BEFORE ROBLOX
* DO NOT CLOSE THIS OTHERWISE IT WILL CLOSE ALL ROBLOX PROCESSES EXCEPT ONE
*/
CreateMutexA(NULL, TRUE, "ROBLOX_singletonMutex");
while (true);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment