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

People keep spamming rebirth button?

Asked by 6 years ago

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

0
paste the script in the question DinozCreates 1070 — 6y
0
You're going about this the wrong way. You should be using a changed event instead of an infinite loop. Roblox has provided some extremely efficient (or at least more efficient than what you are doing) and easy to use methods for its developers. Don't waste them. User#25115 0 — 6y

2 answers

Log in to vote
1
Answered by 6 years ago
Edited 6 years ago

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)

Also use while true do because while wait() do is bad practice

Link to debounce

I have not tested this yet so it maaaay not work but chances of that are slim
01local plr = game.Players.LocalPlayer
02local debounce = true
03local timedelay = 2
04while 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
15end
0
I dont think terrain accepts a string value theking48989987 2147 — 6y
0
what does terrain have to do with this LoganboyInCO 150 — 6y
0
Look at lines 8 and 10. User#20279 0 — 6y
0
???? LoganboyInCO 150 — 6y
Ad
Log in to vote
0
Answered by
Despayr 505 Moderation Voter
6 years ago

You can add a debounce to prevent spamming the function

01local Server = game:GetService("Players")
02local Player = Server.LocalPlayer
03 
04local debounce = false
05 
06script.Parent.MouseButton1Click: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 
17end)

Answer this question