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...
01 | script.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 |
13 | end ) |
01 | local touched = false -- define your debounce |
02 |
03 | script.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 |
20 | end ) |
Hope this helped you! I might not have solved it all the way but I think this will help.