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

How do I make my click for sound script not spam the sound?

Asked by
i_Rook 18
4 years ago

Im trying to make a checkpoint sound, but it keeps on spamming the sound every time the player moves! What should I do?

01local SP = script.Parent
02 
03function onTouch(hit)
04    local H = hit.Parent:FindFirstChild("Humanoid")
05    if H ~= nil then
06        SP.Sound:Play()
07    end
08end
09 
10 
11    script.Parent.Touched:connect(onTouch)
12    script.Parent.TouchEnded = false

2 answers

Log in to vote
0
Answered by
Grazer022 128
4 years ago
Edited 4 years ago

you should use a debounce. Here I’ll show you

01local SP = script.Parent
02local debounce = false
03 
04function onTouch(hit)
05   if not debounce then
06     local H = hit.Parent:FindFirstChild(“Humanoid”)
07     debounce = true
08     if H ~= nil and debounce == true then
09       SP.Sound:Play()
10       wait()
11       debounce = false
12    end
13  end
14end)
15 
16 
17SP.Touched:Connect(onTouch)
18SP.TouchEnded = false
0
debounce makes it that it won’t keep repeating until it ended. Grazer022 128 — 4y
0
@Graze022 I suggest putting the debounce = true on top. Dovydas1118 1495 — 4y
0
what changed here is that you have debounce now. Which will stop your sound from repeating. Hope this helps! Grazer022 128 — 4y
0
@Davydas1118 still does the same thing Grazer022 128 — 4y
Ad
Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

You can use a debounce. From what I've seen from the community chat, A debounce is basically a cooldown. When a thing bounces, it keeps going on forever until the original contact is released. A debounce just prevents this from happening over and over again.

01local debounce = false --False is deactivated, True is activated
02script.Parent.Touched:Connect(function(hit) --You can do this the other way, I just prefer doing it
03    if not debounce then --Alternative: If debounce == false
04        debounce = true
05        if game.Players:GetPlayerFromCharacter(hit.Parent) then --This is to prevent NPCs from touching it
06        script.Parent.Sound:Play()
07        wait(5) --Change this to any number
08        debounce = false
09        end
10    end
11end)

I've added some bits, in order to make the script more neater, and to prevent other things. Edit: I've refined the coding, because I'm not using roblox studio.

Answer this question