Advertisement
tripono

Untitled

Oct 18th, 2015
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 KB | None | 0 0
  1. --Hey everyone!
  2. --I Have made this script for script builder!
  3. --Change YOURUSERNAME to your username. Thank you.
  4. --Credit to xFxllen for DJ xFxllen.
  5. Instance.new("Message",game.Workspace)
  6. game.Workspace.Message.Text = "DJ Player Loaded"
  7. Instance.new("Sound",game.Workspace)
  8. game.Workspace.Sound.Volume = 5
  9. game.Workspace.Sound.SoundId = "http://roblox.com/asset/?id=209096212"
  10. game.Workspace.Sound:Play()
  11. wait(6)
  12. game.Workspace.Message.Text = "By fullerjar"
  13. wait(6)
  14. game.Workspace.Message:Destroy()
  15. game.Workspace.Sound.Volume = 0.9
  16. wait(0.1)
  17. game.Workspace.Sound.Volume = 0.8
  18. wait(0.1)
  19. game.Workspace.Sound.Volume = 0.7
  20. wait(0.1)
  21. game.Workspace.Sound.Volume = 0.6
  22. wait(0.1)
  23. game.Workspace.Sound.Volume = 0.5
  24. wait(0.1)
  25. game.Workspace.Sound.Volume = 0.4
  26. wait(0.1)
  27. game.Workspace.Sound.Volume = 0.3
  28. wait(0.1)
  29. game.Workspace.Sound.Volume = 0.2
  30. wait(0.1)
  31. game.Workspace.Sound.Volume = 0.1
  32. wait(0.1)
  33. game.Workspace.Sound.Volume = 0
  34. wait(0.1)
  35. game.Workspace.Sound:Destroy()
  36.  
  37.  
  38. --Songs model
  39. Instance.new("Model",game.Workspace)
  40. game.Workspace.Model.Name = "Songs"
  41. --Now here comes the songs!
  42. Instance.new("Sound",game.Workspace.Songs) -- AWSOME
  43. game.Workspace.Songs.Sound.Name = "Customsong"
  44. game.Workspace.Songs.Customsong.Volume = 1
  45. customsong = game.Workspace.Songs.Customsong
  46. Instance.new("Sound",game.Workspace.Songs) -- hotlinebling
  47. game.Workspace.Songs.Sound.Name = "hotlinebling"
  48. game.Workspace.Songs.hotlinebling.SoundId = "http://roblox.com/asset/?id=283801001"
  49. game.Workspace.Songs.Deliriousboneless.Volume = 10
  50. Instance.new("Sound",game.Workspace.Songs) --future
  51. game.Workspace.Songs.Sound.Name = "future"
  52. game.Workspace.Songs.hotlinebling.Volume = 10
  53. game.Workspace.Songs.hotlinebling.SoundId = "http://roblox.com/asset/?id=299530855"
  54. Instance.new("Sound",game.Workspace.Songs) --future
  55. game.Workspace.Songs.Sound.Name = "diamondsdancing"
  56. game.Workspace.Songs.diamondsdancing.Volume = 10
  57. game.Workspace.Songs.whiteiverson.SoundId = "http://roblox.com/asset/?id=305476324"
  58. --Say the message so the song plays!
  59. game.Players.fullerjar.Chatted:connect(function(msg)
  60. if msg:sub(1,21)== ":play whiteiverson" then
  61. game.Workspace.Songs.whiteiverson:Play()
  62. end
  63. end)
  64. game.Players.fullerjar.Chatted:connect(function(msg)
  65. if msg:sub(1,21)== ":stop whiteiverson" then
  66. game.Workspace.Songs.whiteiverson:Stop()
  67. end
  68. end)
  69. game.Players.fullerjar.Chatted:connect(function(msg)
  70. if msg:sub(1,15)== ":play diamondsdancing" then
  71. game.Workspace.Songs.throw:Play()
  72. end
  73. end)
  74. game.Players.xFxllen.Chatted:connect(function(msg)
  75. if msg:sub(1,15)== ":stop diamonsdancing" then
  76. game.Workspace.Songs.throw:Stop()
  77. end
  78. end)
  79. game.Players.fullerjar.Chatted:connect(function(msg)
  80. if msg:sub(1,24)== ":play hotlinebling" then
  81. game.Workspace.Songs.hey:Play()
  82. end
  83. end)
  84. game.Players.fullerjar.Chatted:connect(function(msg)
  85. if msg:sub(1,24)== ":stop hotlinebling" then
  86. game.Workspace.Songs.hotlinebling:Play()
  87. end
  88. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement