local mat = workspace.Part local debounce = false local hitm = mat.music
1 | mat.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 |
7 | end ) |
Your debounce starts off false so the code is never run since you're looking for whether the debounce is true.
01 | local mat = workspace.Part |
02 | local debounce = false |
03 | local hitm = mat.music |
04 | mat.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 |
12 | end ) |