hey, i made a healpad script but it dont work
script.Parent.Touched:Connect(function(hit) local humanoid = hit.Parent:FindFirstChild("Humanoid") if humanoid then humanoid.Health = humanoid.Health + 25 wait(1)
1 | end |
2 |
3 | end ) |
I believe you are trying to do a cooldown so it wont heal him fast. Well your script is almost correct. Let me fix it:
01 | debounce = false |
02 | time = 1 --how long you want to wait (cooldown) before you can heal again |
03 |
04 | script.Parent.Touched:Connect( function (hit) |
05 | local humanoid = hit.Parent:FindFirstChild( "Humanoid" ) |
06 | if debounce = = false then debounce = true --We set the debounce to true for the cooldown |
07 | if humanoid then |
08 | humanoid.Health = humanoid.Health + 25 --You cant just type hum.Health = +25.. it wont work. |
09 | wait(time) --we wait |
10 | debounce = false --debounce = false |
11 | end |
12 | end |
13 | end ) |
Good luck, keep scripting.