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

Play Specific Sound Once When Touched?

Asked by 7 years ago

Hey, I have this super simple script, but it really feels like a hard thing to do. When I touch a brick, it makes a sound, but it keeps playing over and over. Is there a way for it to just play once and then stop? Thanks!

function onTouched(hit)
    script.Parent.Sound:play()
    wait(2)
    script.Parent.Sound:stop()
end

script.Parent.Touched:connect(onTouched)

-LukeGabrieI

1 answer

Log in to vote
1
Answered by 7 years ago

You need to make

:play()

capitalized, like this:


:Play()

same with

 :stop()

should be

:Stop()
0
Anything else I should fix? LukeGabrieI 73 — 7y
1
Not really, but touched isn't recommended, I would use magnitude. DaCrazyDev 444 — 7y
1
how would you use magnitude? Coolboyok11 64 — 7y
Ad

Answer this question