Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --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) --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=148047526"
- 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=209096212"
- --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,15)== ":add customsong " then
- game.Workspace.Songs.Throsummo:Stop()
- end
- end)
- game.Players.xFxllen.Chatted:connect(function(msg)
- if msg:sub(1,23)== ":pitch allsongs default" then
- game.Workspace.Songs.popitdontdropit.Pitch = 1
- game.Workspace.Songs.throsummo.Pitch = 1
- Instance.new("Message")
- game.Workspace.Message.Text = "All songs were pitched to default on the DJ Player by xFxllen!"
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement