Subscribe:
/ @bloxloper3596
Script:
local YOURMUSICNAME = game.Workspace.YOURMUSICNAME
script.Parent.MouseButton1Click:Connect(function()
if YOURMUSICNAME.Playing == false then
script.Parent.Text = "Music: On"
YOURMUSICNAME.Playing = true
else
script.Parent.Text = "Music: Off"
YOURMUSICNAME.Playing = false
end)
end)