Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Guys if you have problem with horror game, like you can reset, then insert the localscript in startergui, open up it, and then type:
- repeat
- local success, errormsg = pcall(function()
- local StarterGui = game:GetService("StarterGui")
- StarterGui:SetCore("ResetButtonCallback", false)
- end)
- task.wait()
- until success
- --but if you need to disable leaderboard, then insert the localscript in startergui, open up it, and then type:
- repeat
- local success, errormsg = pcall(function()
- local StarterGui = game:GetService("StarterGui")
- StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)
- end)
- task.wait()
- until success
- --PASTE WILL UPD!!!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement