01 | local debounce = true |
02 |
03 | script.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.t 1 :Clone().Parent = game.Workspace |
08 | script.Parent.p:Play() |
09 | local tp 1 = game.Workspace.t 1 |
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. |
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!
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.
01 | local debounce = true |
02 |
03 | script.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.t 1 :Clone().Parent = game.Workspace |
09 | script.Parent.p:Play() |
10 | local tp 1 = game.Workspace.t 1 |
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. |