Advertisement
ShootemBeaut
Jun 1st, 2024 (edited)
38
0
Never
This is comment for paste [ROBLOX] Music Script
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local sound = Instance.new("Sound", game.Players.LocalPlayer.Character)
  2.  
  3. sound.SoundId = "http://www.roblox.com/asset/?id=1848354536" -- Song ID at end.
  4. sound.Volume = 1 -- Derp (I have quality speakers you might need to change this.)
  5. sound.Pitch = 1 --Speed of Playback.
  6. sound.Looped = true
  7.  
  8. wait()
  9.  
  10. sound:Play()
  11.  
  12. -- relaxed scene
  13.  
  14. -- its a better version you can change looped if you want and change the id
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement