Sort of embarrassing but I'm lost. I'm trying to figure out how to make a brick hurt whoever touches it but I don't know the word. To access the humanoid health I used:
Health=game.Players.player.Humanoid.Health but it said player is not a child of Players
1 | function onTouch(part) |
2 | local humanoid = part.Parent:FindFirstChild( "Humanoid" ) |
3 | if (humanoid ~ = nil ) then -- if a humanoid exists, then |
4 | humanoid.Health = 0 -- "0" kills the player, you can change how much the brick damages the player. |
5 | end |
6 | end |
7 |
8 | script.Parent.Touched:connect(onTouch) |
Hope it helps !