MADE BY Amity
FEATURE:
- ANTILOAD GAME
- .
- NOTE BY DEV:
- I made this for someone but it didnt work but I put it into my autoexecute and noticed some games would break entirely due to this.
- This won’t work with every game.
SCRIPT:
local namecall
namecall = hookmetamethod(game,"__namecall",function(self,...)
local args = {...}
local method = getnamecallmethod()
if not checkcaller() and self == game and method == "IsLoaded" or method == "Loaded" then
return false
end
return namecall(self,...)
end)