Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Disable reset button?

Asked by
FiredDusk 1466 Moderation Voter
8 years ago

The script below disables top gui's. I wanna disable Reseting

game.StarterGui:SetCoreGuiEnabled("All",false)

1 answer

Log in to vote
3
Answered by 8 years ago

Just rename the "Humanoid" object in every character to something else.

game.Players.PlayerAdded:connect(function(player)
    player.CharacterAdded:connect(function()
        player.Character.Humanoid.Name = "MyHumanoid"
    end)
end)
0
I'm pretty new to scripting, I dought I can do that. FiredDusk 1466 — 8y
0
Lmao Lolamtic 63 — 6y
Ad

Answer this question