01 | script.Parent.Touched:Connect( function (Hit) |
02 | if Hit and Hit.Parent and Hit.Parent:FindFirstChild( "Humanoid" ) then |
03 | Hit.Parent.Health = 0 |
04 |
05 | end |
06 |
07 |
08 |
09 |
10 | end ) |
try this:
1 | script.Parent.Touched:Connect( function (Hit) |
2 | if Hit.Parent:FindFirstChild( "Humanoid" ) then |
3 | Hit.Parent.Humanoid.Health = 0 |
4 | end |
5 | end ) |