Hi. can someone help me with a spam filter? can someone do so if they spam click, it only redeems 1 click per second?
script: script.Parent.MouseClick:Connect(function(player) if player:FindFirstChild("leaderstats") and player.leaderstats:FindFirstChild("Cash") then player.leaderstats.Cash.Value = player.leaderstats.Cash.Value + 25 end end)
I am assuming that you meant “Cooldown”, Well then, you should use a boolvariable with an if statement!
01 | local bool = true |
02 |
03 | script.Parent.MouseClick:Connect( function (player) |
04 | if bool = = true and player:FindFirstChild(“leaderstats”) and player.leaderstats:FindFirstChild(“Cash”) then |
05 | bool = false |
06 | player.leaderstats.Cash.Value = player.leaderstats.Cash.Value + 25 |
07 | wait( 1 ) -- cooldown |
08 | bool = true |
09 | end |
10 | end ) |
After the MouseClick
event, it will do what u want it to do and wait for 1 second for it to work again.
1 | script.Parent.MouseClick:Connect( function (player) |
2 | if player:FindFirstChild(“leaderstats”) and player.leaderstats:FindFirstChild(“Cash”) then |
3 | player.leaderstats.Cash.Value = player.leaderstats.Cash.Value + 25 |
4 | wait( 1 ) -- Change this to whatever number you would like |
5 | end |
6 | end ) --If this doesn't work please tell me |
how about:
01 | debounce = false |
02 | script.Parent.MouseClick:Connect( function (player) |
03 | if not debounce then |
04 | debounce = true |
05 | if player:FindFirstChild(“leaderstats”) and player.leaderstats:FindFirstChild(“Cash”) then |
06 | player.leaderstats.Cash.Value = player.leaderstats.Cash.Value + 25 |
07 | wait( 1 ) |
08 | debounce = false |
09 | end |
10 | end |
11 | end ) |