1 | script.Parent.Touched:connect( function (hit) |
2 | local player = hit.Parent:FindFirstChild( 'Humanoid' ) |
3 | if player then |
4 | player.Health = - 60 |
5 | end |
6 | end ) |
Why wont it take only 60 health?
You are setting the health to -60, you aren't subtracting 60.
player.Health = player.Health-60