Advertisement
Guest User

Music List V3

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