Advertisement
xFxllen

DJ SCRIPT AGAIN LOL

Aug 29th, 2015
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. --Credit to xFxllen for DJ xFxllen.
  2. Instance.new("Message",game.Workspace)
  3. game.Workspace.Message.Text = "DJ Player Loaded"
  4. Instance.new("Sound",game.Workspace)
  5. game.Workspace.Sound.Volume = 1
  6. game.Workspace.Sound.SoundId = "http://roblox.com/asset/?id=209096212"
  7. game.Workspace.Sound:Play()
  8. wait(6)
  9. game.Workspace.Message.Text = "By xFxllen"
  10. wait(6)
  11. game.Workspace.Message:Destroy()
  12. game.Workspace.Sound.Volume = 0.9
  13. wait(0.1)
  14. game.Workspace.Sound.Volume = 0.8
  15. wait(0.1)
  16. game.Workspace.Sound.Volume = 0.7
  17. wait(0.1)
  18. game.Workspace.Sound.Volume = 0.6
  19. wait(0.1)
  20. game.Workspace.Sound.Volume = 0.5
  21. wait(0.1)
  22. game.Workspace.Sound.Volume = 0.4
  23. wait(0.1)
  24. game.Workspace.Sound.Volume = 0.3
  25. wait(0.1)
  26. game.Workspace.Sound.Volume = 0.2
  27. wait(0.1)
  28. game.Workspace.Sound.Volume = 0.1
  29. wait(0.1)
  30. game.Workspace.Sound.Volume = 0
  31. wait(0.1)
  32. game.Workspace.Sound:Destroy()
  33.  
  34.  
  35.  
  36.  
  37. --Songs model
  38. Instance.new("Model",game.Workspace)
  39. game.Workspace.Model.Name = "Songs"
  40. --Now here comes the songs!
  41. Instance.new("Sound",game.Workspace.Songs) --Pop it don't drop it
  42. game.Workspace.Songs.Sound.Name = "Popitdontdropit"
  43. game.Workspace.Songs.Popitdontdropit.Volume = 1
  44. game.Workspace.Songs.Popitdontdropit.SoundId = "http://roblox.com/asset/?id=148047526"
  45. Instance.new("Sound",game.Workspace.Songs) --Thro sum mo
  46. game.Workspace.Songs.Sound.Name = "Throsummo"
  47. game.Workspace.Songs.Throsummo.Volume = 1
  48. game.Workspace.Songs.Throsummo.SoundId = "http://roblox.com/asset/?id=209096212"
  49. --Say the message so the song plays!
  50. game.Players.xFxllen.Chatted:connect(function(msg)
  51. if msg:sub(1,21)== ":play popitdontdropit" then
  52. game.Workspace.Songs.Popitdontdropit:Play()
  53. end
  54. end)
  55. game.Players.xFxllen.Chatted:connect(function(msg)
  56. if msg:sub(1,21)== ":stop popitdontdropit" then
  57. game.Workspace.Songs.Popitdontdropit:Stop()
  58. end
  59. end)
  60. game.Players.xFxllen.Chatted:connect(function(msg)
  61. if msg:sub(1,15)== ":play throsummo" then
  62. game.Workspace.Songs.Throsummo:Play()
  63. end
  64. end)
  65. game.Players.xFxllen.Chatted:connect(function(msg)
  66. if msg:sub(1,15)== ":stop throsummo" then
  67. game.Workspace.Songs.Throsummo:Stop()
  68. end
  69. end)
  70. game.Players.xFxllen.Chatted:connect(function(msg)
  71. if msg:sub(1,15)== ":add customsong " then
  72. game.Workspace.Songs.Throsummo:Stop()
  73. end
  74. end)
  75. game.Players.xFxllen.Chatted:connect(function(msg)
  76. if msg:sub(1,23)== ":pitch allsongs default" then
  77. game.Workspace.Songs.popitdontdropit.Pitch = 1
  78. game.Workspace.Songs.throsummo.Pitch = 1
  79. Instance.new("Message")
  80. game.Workspace.Message.Text = "All songs were pitched to default on the DJ Player by xFxllen!"
  81. end
  82. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement