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

Why is my debounce not working? [Solved]

Asked by 10 years ago
01local debounce = true
02 
03script.Parent.Touched:connect(function(part)
04    local h = part.Parent:FindFirstChild("Humanoid")
05     if h ~= nil and debounce == true then
06        wait()
07        game.ServerStorage.t1:Clone().Parent = game.Workspace
08        script.Parent.p:Play()
09        local tp1 = game.Workspace.t1
10        wait()
11        script.Parent.BrickColor = BrickColor.new("Black")
12        debounce = false
13        --[[The following lines are optional in case you want a timer for a button to reactivate.
14 
15        wait(5) --Cooldown time. Can be changed to anything depending on what you want.
View all 24 lines...

Sorry for the slightly messy code. Basically, I want this button to disable itself after you touch it WITHOUT disabling the script, because I want a "cooldown" time for scenarios later in my game. I would very much appreciate assistance on this, as I am not too sure how debouncing works. Thank you!

1 answer

Log in to vote
1
Answered by 10 years ago

Here you go!

The explanation is in the script. :] Also, you should make the debounce a little longer because it's not really a debounce if you're only using it for not even a second.

01local debounce = true
02 
03script.Parent.Touched:connect(function(part)
04    local h = part.Parent:FindFirstChild("Humanoid")
05     if h ~= nil and debounce == true then
06        wait()
07    debounce = false --ADD THIS HERE BECAUSE THEN WHEN YOU TOUCH THE PART, YOU WON'T BE ABLE TO ACTIVATE IT UNTIL YOU CHANGE THE DEBOUNCE TO TRUE AGAIN.
08        game.ServerStorage.t1:Clone().Parent = game.Workspace
09        script.Parent.p:Play()
10        local tp1 = game.Workspace.t1
11        wait()
12        script.Parent.BrickColor = BrickColor.new("Black")
13        debounce = true -- CHANGES TO TRUE SO YOU CAN REACTIVATE IT.
14 
15        --[[The following lines are optional in case you want a timer for a button to reactivate.
View all 26 lines...
0
A tip, for a short cut. Instead of debounce == true, just do debounce by itself since debounce means true so it will run. EzraNehemiah_TF2 3552 — 10y
Ad

Answer this question