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

On Touch block issue. Spams item when touched?

Asked by 5 years ago

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.

01parent = script.Parent
02 
03function onTouch(hit)
04 
05wait(1)
06 
07local ItemInStorage = game.ReplicatedStorage.Floaty;
08local P = ItemInStorage:Clone();
09P.Parent = workspace;
10wait(10)
11game.Workspace.Floaty:Destroy()
12end
13 
14 
15 
16parent.Touched:connect(onTouch)

1 answer

Log in to vote
2
Answered by 5 years ago
Edited 5 years ago

You might want to add a debounce, or a cooldown in other words, so It might look like this

01local debounce = false
02parent = script.Parent
03 
04function 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
16end
17 
18parent.Touched:connect(onTouch)

Forgive me if I'm wrong, I'm pretty new to coding myself, but this should work

0
k thanks, im pretty sure i heard of a debounce before, but i thought it was for other things and didnt know how to do it. but thanks ImprinintInc 18 — 5y
0
wait i just realised the script doesnt seem to be working.. :/ ImprinintInc 18 — 5y
0
And i just noticed an error with the debounce so I moved it up to the beginning of the if statement and it works now, if you use the edited code it should work jediplocoon 877 — 5y
0
If it still doesn't work just tell me, and I'll do my best to fix it jediplocoon 877 — 5y
Ad

Answer this question