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

How do I unmute my music with a GUI?

Asked by
Stravan 18
7 years ago

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.

1local frame = script.parent
2local song = game.Workspace:WaitForChild("Song")
3 
4if song.Playing == true then
5    frame.MouseButton1Down:connect(function()
6        print ('gui was clicked')
7        song.Playing = false
8    end)
9end

2 answers

Log in to vote
0
Answered by 7 years ago

You've almost done it right. The code below should work for you.

01local frame = script.Parent
02local song = game.Workspace:WaitForChild("Song")
03 
04   frame.MouseButton1Down:connect(function()
05        print ('gui was clicked')
06if song.Playing == true then
07    song:Stop() -- I'd suggest using this instead.
08    --song.Playing = false
09else
10--it's not playing!
11    song:Play() -- I'd suggest using this instead.
12    --song.Playing = true
13end
14end)
0
thanks so much! i tried using the else statement but i just used it wrong i guess. Stravan 18 — 7y
Ad
Log in to vote
0
Answered by 7 years ago

Don't forget that its muted for everyone

Answer this question