Advertisement
Guest User

Untitled

a guest
Mar 19th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. game.Players.PlayerAdded:connect(function(player)
  2. player.Chatted:connect(function(message)
  3. if message == "you better stop" then
  4. local sound = Instance.new("Sound", player.Character.Torso)
  5. sound.SoundId = "rbxassetid://1246891273"
  6. sound.Playing = true
  7. game:GetService("Chat"):Chat(player.Character.Head,"I don´t know what ya-", Enum.ChatColor.White)
  8. wait(1)
  9. game:GetService("Chat"):Chat(player.Character.Head,"AAAAAA", Enum.ChatColor.White)
  10. wait(1)
  11. game:GetService("Chat"):Chat(player.Character.Head,"YOU BETTER STOP!", Enum.ChatColor.White)
  12. wait(1)
  13. game:GetService("Chat"):Chat(player.Character.Head,"STOP!", Enum.ChatColor.White)
  14. wait(1)
  15. game:GetService("Chat"):Chat(player.Character.Head,"BITCH STOP!", Enum.ChatColor.Red)
  16. wait(1)
  17. game:GetService("Chat"):Chat(player.Character.Head,"*Airhorn sound* AAAAA", Enum.ChatColor.Red)
  18. wait(2)
  19. sound:Destroy()
  20. end
  21. end)
  22. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement