squidingtin

Music List V4

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