CoreGui "RobloxLoadingGUI" infinitely hangs on gray screen

Bug already half-solved… thanks

I’ve set up an autohotkey on my mouse bound to PageDown/PgDn that deletes the CoreGui component using the command bar, since I don’t think plugins can run on the client… also cba to find out if they do

Here is the AHK script:

#SingleInstance Force
SendMode Input

Main(){
	if WinActive(ahk_exe "RobloxStudioBeta.exe")
		Msgbox, "i love fishing" ; i dont know why but dont delete this or it wont send inputs to the command bar
		Send, ^9
		Send, ^a
		SendRaw, game.CoreGui.RobloxLoadingGUI:Destroy()
		Send, {Enter}
}

PgDn::Main()
NumpadPgdn::Main()
2 Likes