Advertisement
FuZionPlayz

Chat Bot

Jul 6th, 2018
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. --Make your own bot!
  2.  
  3. local botchats = {
  4. "This is a message you can edit!",
  5. "Hey, you can also edit this message!",
  6. "This bot will chat these messages randomly every set amount of time.",
  7. "Copy this line and paste it to have more messages available!",
  8. "Customise and enjoy!"
  9. }
  10.  
  11. for i=1,10 do -- Change 10 to how many times you want to loop
  12. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(botchats[math.random(1, #botchats)], "All")
  13. wait(4) -- Change 4 to how long you want to wait between messages
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement