Okay so I have a script that stops the music when I press a gui (Stop music button) but I would like to just set the volume to 0 instead of stopping it. Could anyone help it? This is the script I'm using
01 | stopped = false |
02 | sound = game.Workspace.Sound |
03 | script.Parent.Text = "Music: ON" |
04 | script.Parent.MouseButton 1 Down:connect( function () |
05 | if stopped = = true then |
06 | sound:Play() |
07 | stopped = false |
08 | script.Parent.Text = "Music: ON" |
09 | else |
10 | sound:Pause() |
11 | stopped = true |
12 | script.Parent.Text = "Music: OFF" |
13 | end |
14 | end ) |
this should work
01 | local stopped = false |
02 | local sound = game.Workspace.Sound -- i just put local cuz im used to makeing local variables |
03 | script.Parent.Text = "Music: ON" |
04 | script.Parent.MouseButton 1 Down:connect( function () |
05 | if stopped = = true then |
06 | sound.Volume = . 5 -- grab the volume property and set to .5 or however high you want it |
07 | stopped = false |
08 | script.Parent.Text = "Music: ON" |
09 | else |
10 | sound.Volume = 0 -- grab the volume property and set to 0 |
11 | stopped = true |
12 | script.Parent.Text = "Music: OFF" |
13 | end |
14 | end ) |