Hello! I want to make the player heal when touching a part. But the code is not working This is the code:
1 | function onTouched(hit) |
2 | hit.Parent:WaitForChild( 'Humanoid' ).Health + = 15 |
3 | end |
4 | script.Parent.Touched:connect(onTouched) |
The only problem is that it might be in a local script. If it is, change it to a normal script. or if that doesn't work, change it to
1 | function onTouched(hit) |
2 | if game.Players:GetPlayerFromCharacter(hit.Parent) then |
3 | hit.Parent.Humanoid.Health = hit.Parent.Humanoid.Health + 15 |
4 | end |
5 | script.Parent.Touched:connect(onTouched) |
I know exactly what is causing the problem. Replace the script with the following:
1 | function onTouched(hit) |
2 | local health = hit.Parent:WaitForChild( 'Humanoid' ).Health.Health |
3 | health = health+ 15 |
4 | end |
5 | script.Parent.Touched:connect(onTouched) |
I hope that helps :D