I have a touch script where if you touch the part, it takes a model from repstore and parents it to workspace, sort of like a regen button. problem is that, when you touch it, it keeps on spawning the item from repstore constantly until you step off the block. help.
01 | parent = script.Parent |
02 |
03 | function onTouch(hit) |
04 |
05 | wait( 1 ) |
06 |
07 | local ItemInStorage = game.ReplicatedStorage.Floaty; |
08 | local P = ItemInStorage:Clone(); |
09 | P.Parent = workspace; |
10 | wait( 10 ) |
11 | game.Workspace.Floaty:Destroy() |
12 | end |
13 |
14 |
15 |
16 | parent.Touched:connect(onTouch) |
You might want to add a debounce, or a cooldown in other words, so It might look like this
01 | local debounce = false |
02 | parent = script.Parent |
03 |
04 | function onTouch(hit) |
05 | if debounce = = false then |
06 | debounce = true |
07 | wait( 1 ) |
08 | local ItemInStorage = game.ReplicatedStorage.Floaty; |
09 | local P = ItemInStorage:Clone(); |
10 | P.Parent = workspace; |
11 | wait( 10 ) |
12 | game.Workspace.Floaty:Destroy() |
13 | end |
14 | wait( 10 ) --change this number to how long you want the cooldown to be |
15 | debounce = false |
16 | end |
17 |
18 | parent.Touched:connect(onTouch) |
Forgive me if I'm wrong, I'm pretty new to coding myself, but this should work