Advertisement
gray_alli28codesrbx

sadasd

Aug 18th, 2019
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. plr = game.Players.iiDkOffical
  2. workplr = workspace.iiDkOffical
  3. setColor = "White"
  4. plr.Chatted:Connect(function(msg)
  5. if workplr:FindFirstChild("Head") then
  6. wait(0.001)
  7. game.Chat:Chat(workplr.Head,msg,setColor)
  8. end
  9. end
  10. )
  11. plr.Chatted:Connect(function(msg)
  12. if msg:lower() == "creeper, oh no" then
  13. setColor = "Green"
  14. local s = Instance.new("Sound",workspace)
  15. s.Name = "eee a creeper"
  16. s.SoundId = "rbxassetid://3565296414"
  17. s.Pitch = 1
  18. s.Volume = 300
  19. s.Looped = false
  20. s.archivable = false
  21. s.TimePosition = 5
  22. wait(0.1)
  23. s:play()
  24. setColor = "White"
  25. wait(7.5)
  26. s:Destroy()
  27. end
  28. end)
  29. plr.Chatted:Connect(function(msg)
  30. if msg:lower() == "drop the bomb" then
  31. setColor = "Red"
  32. local s = Instance.new("Sound",workspace)
  33. s.Name = "yes drop da bomb"
  34. s.SoundId = "rbxassetid://2671146857"
  35. s.Pitch = 1
  36. s.Volume = 300
  37. s.Looped = false
  38. s.archivable = false
  39. s.TimePosition = 2
  40. wait(0.1)
  41. s:play()
  42. setColor = "White"
  43. wait(3)
  44. s:Destroy()
  45. end
  46. end)
  47. plr.Chatted:Connect(function(msg)
  48. if msg:lower() == "e" then
  49. setColor = "Blue"
  50. local s = Instance.new("Sound",workspace)
  51. s.Name = "e"
  52. s.SoundId = "rbxassetid://3110250581"
  53. s.Pitch = 1
  54. s.Volume = 300
  55. s.Looped = false
  56. s.archivable = false
  57. s.TimePosition = 2
  58. wait(0.1)
  59. s:play()
  60. setColor = "White"
  61. wait(0.2)
  62. s:Destroy()
  63. end
  64. end)
  65. plr.Chatted:Connect(function(msg)
  66. if msg:lower() == "bruh" then
  67. setColor = "Red"
  68. local s = Instance.new("Sound",workspace)
  69. s.Name = "bruh.io"
  70. s.SoundId = "rbxassetid://170040190"
  71. s.Pitch = 1
  72. s.Volume = 300
  73. s.Looped = false
  74. s.archivable = false
  75. s.TimePosition = 0.5
  76. wait(0.1)
  77. s:play()
  78. setColor = "White"
  79. wait(0.5)
  80. s:Destroy()
  81. end
  82. end)
  83. plr.Chatted:Connect(function(msg)
  84. if msg:lower() == "thats how mafia works" then
  85. setColor = "Blue"
  86. local s = Instance.new("Sound",workspace)
  87. s.Name = "lvl 1 crook"
  88. s.SoundId = "rbxassetid://2729624531"
  89. s.Pitch = 1
  90. s.Volume = 300
  91. s.Looped = false
  92. s.archivable = false
  93. s.TimePosition = 1.7
  94. wait(0.1)
  95. s:play()
  96. setColor = "White"
  97. wait(15)
  98. s:Destroy()
  99. end
  100. end)
  101.  
  102. print("sound effect chats: creeper, oh no | drop the bomb | e | bruh | thats how mafia works")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement