Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

it doesn't wait 1 second before touching again?

Asked by
imKlevi 94
5 years ago

it doesn't wait 1 second before touching again. Whats wrong ?

01workspace[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
11end)

1 answer

Log in to vote
1
Answered by
RAFA1608 543 Moderation Voter
5 years ago

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:

01clicked = false
02workspace[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
11end)
0
so yea it works imKlevi 94 — 5y
0
it didnt work before because the value clicked was being set in the function, therefore making the debounce false again RAFA1608 543 — 5y
Ad

Answer this question