Advertisement
BenjaminPlays

In-Game Music Script

Feb 19th, 2021
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.40 KB | None | 0 0
  1. MAKE A SCRIPT IN WORKSPACE AND PUT THE CODE BELOW IN!
  2.  
  3. --Made by lceyDex
  4.  
  5. local sound = Instance.new("Sound")
  6.  
  7. sound.Name = "Sound"                            
  8. sound.SoundId = "http://www.roblox.com/asset/?id=1234567890" --Replace 1234567890 with your sound ID
  9. sound.Volume = 1.5
  10. sound.Pitch = 1
  11. sound.Looped = true
  12. sound.archivable = false
  13.  
  14. sound.Parent = game.Workspace
  15.  
  16. wait(0)
  17.  
  18. sound:play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement