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

I still don't hear audio playing someone help?

Asked by 4 years ago

local mat = workspace.Part local debounce = false local hitm = mat.music

1mat.Touched:Connect(function(hit)
2    if hit.Parent:FindFirstChild("Torso") and debounce == true then
3           hitm:Play()
4           wait(.5)
5           hitm.Ended:Wait()
6           debounce = false     end
7end)

1 answer

Log in to vote
1
Answered by 4 years ago
Edited 4 years ago

Your debounce starts off false so the code is never run since you're looking for whether the debounce is true.

01local mat = workspace.Part
02local debounce = false
03local hitm = mat.music
04mat.Touched:Connect(function(hit)
05    if hit.Parent:FindFirstChild("Torso") and debounce == false then
06        debounce = true
07        hitm:Play()
08        wait(.5)
09        hitm.Ended:Wait()
10        debounce = false
11    end
12end)
0
It isn't working still :/ JerkDerekThe14alt 11 — 4y
Ad

Answer this question