For some reason the SoundGroup never works. I have this script here and it should mute the music but it doesn’t work. Even if I manually turn the SoundGroup’s volume off it doesn’t work, both client and serverside.
script.Parent.Music.MouseButton1Click:Connect(function()
if script.Parent.Music.State.Value == true then
Music.Volume = 0
script.Parent.Music.Image = script.Parent.Music.Muted.Value
script.Parent.Music.State.Value = false
else
Music.Volume = 1
script.Parent.Music.Image = script.Parent.Music.Unmuted.Value
script.Parent.Music.State.Value = true
end
end)