Advertisement
spicecode

music

Jun 6th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.25 KB | None | 0 0
  1. local s = Instance.new("Sound")
  2.  
  3. s.Name = "music"
  4.  
  5. s.Pitch = 1
  6.  
  7. s.SoundId = "http://www.roblox.com/asset/?id=503515539"
  8.  
  9. s.Volume = 0.5
  10.  
  11. s.Looped = true
  12.  
  13. s.archivable = false
  14.  
  15. s.Parent = game.Workspace
  16.  
  17. wait(1)
  18.  
  19. s:play()
  20.  
  21.  
  22. --[:Massive:]--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement