quackmaths

Untitled

Sep 15th, 2020
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. -- WARNING: Be sure to make this a Script and place it in Workspace if you want it to work!
  2.  
  3. local sound = Instance.new("Sound")
  4.  
  5. sound.Name = "Sound"
  6. sound.SoundId = "http://www.roblox.com/asset/?id=5540027505" -- Song ID at end.
  7. sound.Volume = 10 -- Derp (I have quality speakers you might need to change this.)
  8. sound.Pitch = 1 --Speed of Playback.
  9. sound.Looped = true
  10. sound.archivable = false
  11.  
  12. sound.Parent = game.Workspace
  13.  
  14. wait()
  15.  
  16. sound:play()
Add Comment
Please, Sign In to add comment