Advertisement
Guest User

Music List V2

a guest
Jan 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local W = Instance.new("Message", game.Workspace)
  2. W.Text = "Music List"
  3. wait(2)
  4. W.Text = "Made By Squid"
  5. wait(2)
  6. W:Destroy()
  7.  
  8. for i, v in pairs(game.Players:GetChildren()) do
  9.     v.Chatted:connect(function(C)
  10.         if C == "come with me now" then
  11.             local f = Instance.new("Sound", game.Workspace)
  12.             f.SoundId = "http://www.roblox.com/asset/?id=181648045"
  13.             f.PlayOnRemove = true
  14.             f:Play()
  15.         elseif C == "Takyon " then
  16.             local US = Instance.new("Sound", game.Workspace)
  17.             US.SoundId = "http://www.roblox.com/asset/?id=1278237495"
  18.             US.PlayOnRemove = true
  19.             US:Play()
  20.         elseif C == "ducks" then
  21.             local a = Instance.new("Sound", game.Workspace)
  22.             a.SoundId = "http://www.roblox.com/asset/?id=911320107"
  23.             a.PlayOnRemove = true
  24.             a:Play()
  25.         elseif C == "green" then
  26.             local w = Instance.new("Sound", game.Workspace)
  27.             w.SoundId = "http://www.roblox.com/asset/?id=845641654"
  28.             w.PlayOnRemove = true
  29.             w:Play()
  30.         end
  31.     end)
  32. end
  33.  
  34. game.Players.PlayerAdded:connect(function(Plr)
  35.     Plr.Chatted:connect(function(C)
  36.         if C == "login" then
  37.             local WIDS = Instance.new("Sound", game.Workspace)
  38.             WIDS.SoundId = "http://www.roblox.com/asset/?id=1337668681"
  39.             WIDS.PlayOnRemove = true
  40.             WIDS:Play()
  41.         elseif C == "rise" then
  42.             local US = Instance.new("Sound", game.Workspace)
  43.             US.SoundId = "http://www.roblox.com/asset/?id=231660267"
  44.             US.PlayOnRemove = true
  45.             US:Play()
  46.         elseif C == "oh yea" then
  47.             local y = Instance.new("Sound", game.Workspace)
  48.             y.SoundId = "http://www.roblox.com/asset/?id=235997694"
  49.             y.PlayOnRemove = true
  50.             y:Play()
  51.         elseif C == "brother" then
  52.             local b = Instance.new("Sound", game.Workspace)
  53.             b.SoundId = "http://www.roblox.com/asset/?id=233089084"
  54.             b.PlayOnRemove = true
  55.             b:Play()
  56.         elseif C == "bambous" then
  57.             local ILTS = Instance.new("Sound", game.Workspace)
  58.             ILTS.SoundId = "http://www.roblox.com/asset/?id=198285559"
  59.             ILTS.PlayOnRemove = true
  60.             ILTS:Play()
  61.         elseif C == "stop" then
  62.             local 0 = Instance.new("Sound", game.Workspace)
  63.             0.SoundId = "http://www.roblox.com/asset/?id=0"
  64.             0.PlayOnRemove = true
  65.             0:Play()
  66.         end
  67.     end)
  68. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement