Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Hey everyone!
- --I Have made this script for script builder!
- --Change thkingboss to your username. Thank you.
- --Credit to xFxllen for DJ xFxllen.
- Instance.new("Message",game.Workspace)
- game.Workspace.Message.Text = "DJ Player Loaded"
- Instance.new("Sound",game.Workspace)
- game.Workspace.Sound.Volume = 1
- game.Workspace.Sound.SoundId = "http://roblox.com/asset/?id=209096212"
- game.Workspace.Sound:Play()
- wait(6)
- game.Workspace.Message.Text = "By xFxllen"
- wait(6)
- game.Workspace.Message:Destroy()
- game.Workspace.Sound.Volume = 0.9
- wait(0.1)
- game.Workspace.Sound.Volume = 0.8
- wait(0.1)
- game.Workspace.Sound.Volume = 0.7
- wait(0.1)
- game.Workspace.Sound.Volume = 0.6
- wait(0.1)
- game.Workspace.Sound.Volume = 0.5
- wait(0.1)
- game.Workspace.Sound.Volume = 0.4
- wait(0.1)
- game.Workspace.Sound.Volume = 0.3
- wait(0.1)
- game.Workspace.Sound.Volume = 0.2
- wait(0.1)
- game.Workspace.Sound.Volume = 0.1
- wait(0.1)
- game.Workspace.Sound.Volume = 0
- wait(0.1)
- game.Workspace.Sound:Destroy()
- --Songs model
- Instance.new("Model",game.Workspace)
- game.Workspace.Model.Name = "Songs"
- --Now here comes the songs!
- Instance.new("Sound",game.Workspace.Songs) -- Custom Song COMING SOON!
- game.Workspace.Songs.Sound.Name = "Customsong"
- game.Workspace.Songs.Customsong.Volume = 1
- customsong = game.Workspace.Songs.Customsong
- Instance.new("Sound",game.Workspace.Songs) --Delirous Boneless
- game.Workspace.Songs.Sound.Name = "Deliriousboneless"
- game.Workspace.Songs.Deliriousboneless.SoundId = "http://roblox.com/asset/?id=539890772"
- game.Workspace.Songs.Deliriousboneless.Volume = 1
- Instance.new("Sound",game.Workspace.Songs) --Pop it don't drop it
- game.Workspace.Songs.Sound.Name = "Popitdontdropit"
- game.Workspace.Songs.Popitdontdropit.Volume = 1
- game.Workspace.Songs.Popitdontdropit.SoundId = "http://roblox.com/asset/?id=1303850396"
- Instance.new("Sound",game.Workspace.Songs) --Thro sum mo
- game.Workspace.Songs.Sound.Name = "Throsummo"
- game.Workspace.Songs.Throsummo.Volume = 1
- game.Workspace.Songs.Throsummo.SoundId = "http://roblox.com/asset/?id=987561095"
- --Say the message so the song plays!
- game.Players.xFxllen.Chatted:connect(function(msg)
- if msg:sub(1,21)== ":play popitdontdropit" then
- game.Workspace.Songs.Popitdontdropit:Play()
- end
- end)
- game.Players.xFxllen.Chatted:connect(function(msg)
- if msg:sub(1,21)== ":stop popitdontdropit" then
- game.Workspace.Songs.Popitdontdropit:Stop()
- end
- end)
- game.Players.xFxllen.Chatted:connect(function(msg)
- if msg:sub(1,15)== ":play throsummo" then
- game.Workspace.Songs.Throsummo:Play()
- end
- end)
- game.Players.xFxllen.Chatted:connect(function(msg)
- if msg:sub(1,15)== ":stop throsummo" then
- game.Workspace.Songs.Throsummo:Stop()
- end
- end)
- game.Players.xFxllen.Chatted:connect(function(msg)
- if msg:sub(1,24)== ":play deliriousboneless" then
- game.Workspace.Songs.Deliriousboneless:Play()
- end
- end)
- game.Players.xFxllen.Chatted:connect(function(msg)
- if msg:sub(1,24)== ":stop deliriousboneless" then
- game.Workspace.Songs.Deliriousboneless:Play()
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement