How would I make it where the "Home" gui would go away, I don't want it so you can't reset, or is there a script someone could make that doesn't let you die?
Heres a script, a Anti-Reset Gui script.
1 | game:service( "Players" ).PlayerAdded:connect( function (plr) |
2 | repeat wait( 0 ) until plr.Character |
3 | if plr.Character:FindFirstChild( "Humanoid" ) then |
4 | plr.Character.Humanoid.Name = "humanoid" |
5 | end end ) |