it doesn't wait 1 second before touching again. Whats wrong ?
01 | workspace [ plr.Name.. "Skills" ] .BallAttack.Touched:Connect( function (hit) |
02 | local hum = hit.Parent:FindFirstChild( "Humanoid" ) |
03 | local clicked = false |
04 | if hum and clicked = = false then |
05 | clicked = true |
06 | hum:TakeDamage( 10 ) |
07 | print ( "Killing!" ) |
08 | wait( 1 ) |
09 | clicked = false |
10 | end |
11 | end ) |
The local value clicked is stored within the function's scope, meaning that it will not wait 1 second because every time the function is ran, it is set to be false, or something (i suck at explaining stuff.). Heres the fixed version:
01 | clicked = false |
02 | workspace [ plr.Name.. "Skills" ] .BallAttack.Touched:Connect( function (hit) |
03 | local hum = hit.Parent:FindFirstChildWhichIsA( "Humanoid" ) |
04 | if hum and clicked = = false then |
05 | clicked = true |
06 | hum:TakeDamage( 10 ) |
07 | print ( "Killing!" ) |
08 | wait( 1 ) |
09 | clicked = false |
10 | end |
11 | end ) |