I've got a script that mutes the music, but I don't really know how to turn it back on once it has been muted.
1 | local frame = script.parent |
2 | local song = game.Workspace:WaitForChild( "Song" ) |
3 |
4 | if song.Playing = = true then |
5 | frame.MouseButton 1 Down:connect( function () |
6 | print ( 'gui was clicked' ) |
7 | song.Playing = false |
8 | end ) |
9 | end |
You've almost done it right. The code below should work for you.
01 | local frame = script.Parent |
02 | local song = game.Workspace:WaitForChild( "Song" ) |
03 |
04 | frame.MouseButton 1 Down:connect( function () |
05 | print ( 'gui was clicked' ) |
06 | if song.Playing = = true then |
07 | song:Stop() -- I'd suggest using this instead. |
08 | --song.Playing = false |
09 | else |
10 | --it's not playing! |
11 | song:Play() -- I'd suggest using this instead. |
12 | --song.Playing = true |
13 | end |
14 | end ) |