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

How do I make audio play when a player clicks a block (using clickdetectors)?

Asked by 10 years ago

I need a player to be able to click a block, and then it plays audio. How do I do this?

3 answers

Log in to vote
1
Answered by 6 years ago
01a = false
02script.Parent.ClickDetector.MouseClick:connect(function(player)
03    if a == false then
04        game.Workspace.Audio:Play()
05        a = true
06    else
07        game.Workspace.Audio:Stop()
08        a = false
09    end
10end)
Ad
Log in to vote
1
Answered by
Shawnyg 4330 Trusted Badge of Merit Snack Break Moderation Voter Community Moderator
10 years ago

@Capin, I'll help you out with that.

01a = false
02script.Parent.ClickDetector.MouseClick:connect(function(player)
03if a == false then
04game.Workspace.Audio:Play()
05a = true
06else
07game.Workspace.Audio:Stop()
08a = false
09end
10end)

For TextButtons:

01a = false
02script.Parent.MouseButton1Down:connect(function(player)
03if a == false then
04game.Workspace.Audio:Play()
05a = true
06else
07game.Workspace.Audio:Stop()
08a = false
09end
10end)
0
How would I do the same with text buttons? SchonATL 15 — 10y
0
Simply change line 2, to `script.Parent.MouseButton1Down` Shawnyg 4330 — 10y
0
Did it for you Shawnyg 4330 — 10y
Log in to vote
0
Answered by 10 years ago
1script.Parent.ClickDetector.MouseClick:connect(function(player)
2game.Workspace.Audio:Play()
3end)

This is assuming the script is in the part, and the audio is called Audio, you can change it accordingly.

0
Thank you, this works great! But could you add 1 more thing to it? Is there a way that I could make it so when you click again, it stops? SchonATL 15 — 10y

Answer this question