Some game creator's created a mute button, despite that, On windows they have a volume mixer, where you can have another program up and ROBLOX muted. Or you can make a gui volume such as this:
Down: function Clicked()
script.Parent.Parent.Parent.ScrollingFrame.Sound.Volume = script.Parent.Parent.Parent.ScrollingFrame.Sound.Volume - 0.1
script.Parent.Parent.Text = script.Parent.Parent.Parent.ScrollingFrame.Sound.Volume
wait(1)
script.Parent.Parent.Text = "Change volume"
if script.Parent.Parent.Parent.ScrollingFrame.Sound.Volume == 0 then
script.Parent.Parent.Parent.ScrollingFrame.Sound.Volume = script.Parent.Parent.Parent.ScrollingFrame.Sound.Volume + 0.1
end
end
script.Parent.MouseButton1Down:connect(Clicked)
Up:
function Clicked()
script.Parent.Parent.Parent.ScrollingFrame.Sound.Volume = script.Parent.Parent.Parent.ScrollingFrame.Sound.Volume + 0.1
script.Parent.Parent.Text = script.Parent.Parent.Parent.ScrollingFrame.Sound.Volume
wait(1)
script.Parent.Parent.Text = "Change volume"
end
script.Parent.MouseButton1Down:connect(Clicked)
|