Advertisement
9Simplicity9

Untitled

Jun 7th, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. game:GetService("SoundService").AmbientReverb = "Hallway"
  2. function what()
  3. local s = Instance.new("Sound")
  4. s.Name = "Sound"
  5. s.SoundId = "http://www.roblox.com/asset/?id=1846448410"
  6. s.Volume = 10
  7. s.Looped = true
  8. s.archivable = false
  9. s.Pitch = 1
  10. s.Parent = game.Workspace
  11.  
  12. s:play()
  13. end
  14. while true do wait(0.1)
  15. what()
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement