Advertisement
c00lkiddv2016

c00lvoice v0.1

Jun 16th, 2016
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. print 'c00lvoice Loaded!'
  2.  
  3. game.Players.PlayerAdded:connect(function(player) player.Chatted:connect(function(msg)
  4. sound1 = "http://www.roblox.com/asset/?id=130762736"
  5. sound2 = "http://www.roblox.com/asset/?id=130872377"
  6. sound3 = "http://www.roblox.com/asset/?id=317393485"
  7. sound4 = "http://www.roblox.com/asset/?id=193528674"
  8. sound5 = "http://www.roblox.com/asset/?id=252385998"
  9.  
  10. if msg=="dubstep" then
  11. local s = Instance.new("Sound")
  12. s.Name = "Sound"
  13. s.SoundId = sound1
  14. s.Volume = 2
  15. s.Looped = false
  16. s.archivable = false
  17. s.Parent = game.Workspace
  18. s:Play()
  19. end
  20.  
  21. if msg=="narwhals" then
  22. local s = Instance.new("Sound")
  23. s.Name = "Sound"
  24. s.SoundId = sound2
  25. s.Volume = 2
  26. s.Looped = true
  27. s.archivable = false
  28. s.Parent = game.Workspace
  29. s:Play()
  30. end
  31.  
  32. if msg=="flowey" then
  33. local s = Instance.new("Sound")
  34. s.Name = "Sound"
  35. s.SoundId = sound3
  36. s.Volume = 2
  37. s.Looped = true
  38. s.archivable = false
  39. s.Parent = game.Workspace
  40. s:Play()
  41. end
  42.  
  43. if msg=="mlg" then
  44. local s = Instance.new("Sound")
  45. s.Name = "Sound"
  46. s.SoundId = sound4
  47. s.Volume = 2
  48. s.Looped = true
  49. s.archivable = false
  50. s.Parent = game.Workspace
  51. s:Play()
  52. end
  53.  
  54. if msg=="roblox" then
  55. local s = Instance.new("Sound")
  56. s.Name = "Sound"
  57. s.SoundId = sound5
  58. s.Volume = 2
  59. s.Looped = true
  60. s.archivable = false
  61. s.Parent = game.Workspace
  62. s:Play()
  63. end
  64.  
  65.  
  66. end) end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement