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

The Debounce in my code between GiveRobux event Fired isn't work, How do I fix?

Asked by 7 years ago
01local buttonPressed = false
02 
03script.Parent.MouseButton1Click:connect(function()
04    if not buttonPressed then
05        buttonPressed = true
06        workspace.GiveRobux:FireServer()
07        wait(5)
08        buttonPressed = false
09    end
10end)
0
Unless Workspace is a variable you set up, make sure it has a capital W, or it will stop the script when it reaches that point. commag 228 — 7y
0
the capital W is deprecated, keep it lowercase. Perci1 4988 — 7y

1 answer

Log in to vote
1
Answered by
sad_eyez 162
7 years ago
Edited 7 years ago

Try changing the "if statement" to something like this:

01local buttonPressed = false
02 
03script.Parent.MouseButton1Click:connect(function()
04    if buttonPressed == false then
05        buttonPressed = true
06        workspace.GiveRobux:FireServer()
07        wait(5)
08        buttonPressed = false
09    end
10end)

so that way if the buttonPressed is equal true the if statement won't run

Ad

Answer this question