SoundGroup Doesn't work

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)

Did you set the music’s soundgroup to music

Music is soundgroup i just didnt show the variable

Did you set the sounds’s soundgroup to “music”

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.