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

What is Debounce?

Asked by 11 years ago

I'm not sure what debounce is. I've seen it in many scripts but I don't understand it.

1 answer

Log in to vote
1
Answered by 11 years ago

Debounce is a way to make sure functions, or other things involved in a script, only happen once, or when they are supposed to.

For example, an on Brick Hit script. The script will keep relapsing through, as the player stands on it, so one way to make sure it only fires once is a debounce.

1debounce = false
2 
3randomlinehere:connect(function (random)
4    if not debounce then -- aka "if debounce == false then"
5        debounce = true
6        -- Script here
7    end
8end)
Ad

Answer this question