01 | local buttonPressed = false |
02 |
03 | script.Parent.MouseButton 1 Click:connect( function () |
04 | if not buttonPressed then |
05 | buttonPressed = true |
06 | workspace.GiveRobux:FireServer() |
07 | wait( 5 ) |
08 | buttonPressed = false |
09 | end |
10 | end ) |
Try changing the "if statement" to something like this:
01 | local buttonPressed = false |
02 |
03 | script.Parent.MouseButton 1 Click:connect( function () |
04 | if buttonPressed = = false then |
05 | buttonPressed = true |
06 | workspace.GiveRobux:FireServer() |
07 | wait( 5 ) |
08 | buttonPressed = false |
09 | end |
10 | end ) |
so that way if the buttonPressed is equal true the if statement won't run