Here is the script: ~~~~~~~~~~~~~~~~~ game.Players.LocalPlayer.Touched:connect(function(hit) game.Players.LocalPlayer.Humanoid.Health = 0 end) ~~~~~~~~~~~~~~~~~ Please tell me if i'm wrong and tell me how to fix it, thank you
Hellooo :D
script :
1 | function oof(plr) |
2 | local humanoid = plr.Parent:WaitForChild( "Humanoid" ) |
3 | humanoid.Health = 0 |
4 | end |
5 |
6 | script.Parent.Touched:Connect(oof) |