Hello, How to make that music stops whenever a player click the play button?
Create an TextButton, modify it a little bit then add these code:
local id = 'place the sound id here' local sound = Instance.new('Sound',workspace) sound.SoundId = 'rbxassetid://'..id
buttonnamehere.MouseButton1Click:connect(function() sound:Stop() end)