i want a button on the topbar to mute the music playing from the toolkit
i have the button i just don’t know how to link it into the music toolkit
local mute = Icon.new()
mute:setCaption("Mute")
mute:setImage(166377448, "deselected")
mute:setImage(6413981913, "selected")
mute:setLeft()
mute.deselected:Connect(function()
-- unmute music
end)
mute.selected:Connect(function()
-- mute music
end)