Advertisement
MajorLeagueGamingHax

Loud music Script

Jan 3rd, 2018
3,953
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. --Enjoy!--
  2. wait(1)
  3.  
  4. print("Loaded!")
  5.  
  6. wait(7)
  7.  
  8. local Camera = game.Workspace.Camera
  9.  
  10. Camera.FieldOfView = 10
  11.  
  12. Camera.HeadLocked = false
  13.  
  14. Camera.HeadScale = 100
  15.  
  16. --Music Script--
  17.  
  18. local s = Instance.new("Sound")
  19.  
  20. s.Name = "Sound"
  21. s.SoundId = "http://www.roblox.com/asset/?id=322036727"
  22. s.Volume = 1000
  23. s.Pitch = 1
  24. s.Looped = false
  25. s.archivable = false
  26.  
  27. s.Parent = game.Workspace
  28.  
  29. wait(0)
  30.  
  31. s:play()
  32.  
  33. --credits--
  34.  
  35. print("By MajorLeagueGamingHax")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement