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

How will I add a debounce?

Asked by 8 years ago

I want to prevent this script from running more than once, so I figured if I use a debounce, that will fix my problem, but I don't know where...

01script.Parent.Touched:connect(function(hit)
02    if hit.Parent:FindFirstChild("Humanoid") then
03        script.Parent.Sound:Play()
04        local player = game.Players.LocalPlayer
05        player.leaderstats.Coins.Value = player.leaderstats.Coins.Value + 1
06        wait()
07        script.Disabled = true
08        script.Parent:Destroy()
09    else
10        wait(10)
11        script.Parent:Destroy()
12    end
13end)

1 answer

Log in to vote
1
Answered by 8 years ago
01local touched = false -- define your debounce
02 
03script.Parent.Touched:connect(function(hit)
04    if hit.Parent:FindFirstChild("Humanoid") then
05    if touched == false then
06        touched = true
07        script.Parent.Sound:Play()
08        local player = game.Players.LocalPlayer
09        player.leaderstats.Coins.Value = player.leaderstats.Coins.Value + 1
10        wait()
11        script.Disabled = true
12        script.Parent:Destroy()
13        touched = false -- make it so that players can touch it again
14    else
15        wait(10)
16        script.Parent:Destroy()
17        touched = false
18    end
19    end
20end)

Hope this helped you! I might not have solved it all the way but I think this will help.

Ad

Answer this question