alek_

Trash Talk Script

Jun 29th, 2020 (edited)
13,318
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.53 KB | None | 0 0
  1. -- Press H to trash talk
  2.  
  3. local player = game.Players.LocalPlayer
  4.  
  5. local trashtalk = {"YOU'RE TRASH KID", "L", "EZ", "GET CLAPPED", "HOW DID YOU LOSE", "LOSER", "GET GOOD", "LOOOOOOL", "YOU'RE SO BAD"}
  6.  
  7. local mouse = player:GetMouse()
  8.  
  9. function TalkTrash(k)
  10.  
  11.     k = k:lower()
  12.  
  13.     if k == "h" then
  14.  
  15.         game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(trashtalk[math.random(1,#trashtalk)], "All")
  16.  
  17.     end
  18.  
  19. end
  20.  
  21. mouse.KeyDown:Connect(TalkTrash)
  22.  
  23. -- isaraw8912, Ubicast
Add Comment
Please, Sign In to add comment