Im trying to make a checkpoint sound, but it keeps on spamming the sound every time the player moves! What should I do?
01 | local SP = script.Parent |
02 |
03 | function onTouch(hit) |
04 | local H = hit.Parent:FindFirstChild( "Humanoid" ) |
05 | if H ~ = nil then |
06 | SP.Sound:Play() |
07 | end |
08 | end |
09 |
10 |
11 | script.Parent.Touched:connect(onTouch) |
12 | script.Parent.TouchEnded = false |
you should use a debounce. Here I’ll show you
01 | local SP = script.Parent |
02 | local debounce = false |
03 |
04 | function 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 |
14 | end ) |
15 |
16 |
17 | SP.Touched:Connect(onTouch) |
18 | SP.TouchEnded = false |
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.
01 | local debounce = false --False is deactivated, True is activated |
02 | script.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 |
11 | end ) |
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.