Advertisement
squidingtin

VC

Aug 4th, 2017
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1.  
  2. for i, v in pairs(game.Players:GetChildren()) do
  3. v.Chatted:connect(function(C)
  4. if C == "death" then
  5. local WIDS = Instance.new("Sound", game.Workspace)
  6. WIDS.SoundId = "http://www.roblox.com/asset/?id=826175502"
  7. WIDS.PlayOnRemove = true
  8. WIDS:Play()
  9. elseif C == "brother" then
  10. local US = Instance.new("Sound", game.Workspace)
  11. US.SoundId = "http://www.roblox.com/asset/?id=233089084"
  12. US.PlayOnRemove = true
  13. US:Play()
  14. elseif C == "Invincible" then
  15. local US = Instance.new("Sound", game.Workspace)
  16. US.SoundId = "http://www.roblox.com/asset/?id=427649630"
  17. US.PlayOnRemove = true
  18. US:Play()
  19. elseif C == "step" then
  20. local US = Instance.new("Sound", game.Workspace)
  21. US.SoundId = "http://www.roblox.com/asset/?id=247323116"
  22. US.PlayOnRemove = true
  23. US:Play()
  24. end)
  25. end
  26.  
  27. game.Players.PlayerAdded:connect(function(Plr)
  28. Plr.Chatted:connect(function(C)
  29. if C == "death" then
  30. local WIDS = Instance.new("Sound", game.Workspace)
  31. WIDS.SoundId = "http://www.roblox.com/asset/?id=826175502"
  32. WIDS.PlayOnRemove = true
  33. WIDS:Play()
  34. elseif C == "brother" then
  35. local US = Instance.new("Sound", game.Workspace)
  36. US.SoundId = "http://www.roblox.com/asset/?id=233089084"
  37. US.PlayOnRemove = true
  38. US:Play()
  39. elseif C == "Invincible" then
  40. local US = Instance.new("Sound", game.Workspace)
  41. US.SoundId = "http://www.roblox.com/asset/?id=427649630"
  42. US.PlayOnRemove = true
  43. US:Play()
  44. elseif C == "step" then
  45. local US = Instance.new("Sound", game.Workspace)
  46. US.SoundId = "http://www.roblox.com/asset/?id=247323116"
  47. US.PlayOnRemove = true
  48. US:Play()
  49. end
  50. end)
  51. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement