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

How do you make something not kill you while your healing?

Asked by 10 years ago

How do you make a script, that doesnt allow you to reset, or die while healing?

0
You can't prevent someone from resetting. Tesouro 407 — 10y

1 answer

Log in to vote
1
Answered by 10 years ago

Put this in a LocalScript in StarterPack

player = game.Players.LocalPlayer
game.Players.PlayerAdded:connect(function()
    player.Character.Humanoid.Name = "humanoid" 
end)
Ad

Answer this question