Ok so basically I have this gui where when you get a certain amount of points, you get to rebirth. But somehow, people spam the rebirth button and they get extra rebirths, when they are only supposed to get one. Can anyone help?
Here is a link to a picture of the script: https://gyazo.com/917c67e62665bc4c2b3d2370560f1175
This should work, if you don't want players spamming the rebirth button you need to use debounce
Change local timedelay = 2
to whatever number you want (in seconds)
while true do
because while wait() do is bad practice01 | local plr = game.Players.LocalPlayer |
02 | local debounce = true |
03 | local timedelay = 2 |
04 | while true do |
05 | if debounce = = true then |
06 | debounce = false |
07 | if (plr.leaderstats.Rebirths.Value * 350 ) + 350 < = plr.leaderstats.Points.Value then |
08 | script.Parent.Terrain = "Click to Rebirth" |
09 | else |
10 | script.Parent.Terrain = "Rebirth in " ..(plr.leaderstats.Rebirths.Value * 350 ) + 350 - plr.leaderstats.Points.Value |
11 | end |
12 | wait(timedelay) |
13 | debounce = true |
14 | end |
15 | end |
You can add a debounce to prevent spamming the function
01 | local Server = game:GetService( "Players" ) |
02 | local Player = Server.LocalPlayer |
03 |
04 | local debounce = false |
05 |
06 | script.Parent.MouseButton 1 Click:Connect( function () |
07 |
08 | if debounce then return end ---If debounce = true, then stop progression |
09 | debounce = true ---Sets debounce to true after clicking the button. Prevents spamming. |
10 | script.Parent.RebirthEvent:FireServer() |
11 |
12 | wait( 5 ) ---Amount of time to wait before they can click the button again. |
13 | debounce = false ---Sets debounce to false, allowing the code to run again. |
14 |
15 |
16 |
17 | end ) |