I need a player to be able to click a block, and then it plays audio. How do I do this?
01 | a = false |
02 | script.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 |
10 | end ) |
@Capin, I'll help you out with that.
01 | a = false |
02 | script.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 |
10 | end ) |
For TextButtons:
01 | a = false |
02 | script.Parent.MouseButton 1 Down: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 |
10 | end ) |
1 | script.Parent.ClickDetector.MouseClick:connect( function (player) |
2 | game.Workspace.Audio:Play() |
3 | end ) |
This is assuming the script is in the part, and the audio is called Audio, you can change it accordingly.