Sirshark10

Lemmmy Brain

Aug 1st, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local speech = 0
  2.  
  3. local swears = {
  4.     "cunt",
  5.     "gay",
  6.     "nigger",
  7.     "faggot",
  8.     "fuck",
  9.     "shit",
  10.     "wank",
  11.     "frenulum",
  12.     "chink winky",
  13.     "youre a chinky fuck"
  14. }
  15. local function swear()
  16.     print(swears[math.random(1,#swears)])
  17. end
  18.  
  19. local function correct(input)
  20.     if input > 6000 and input < 9000 then
  21.         return true
  22.     else
  23.         return false
  24.     end
  25. end
  26.  
  27. while not correct(speech) do
  28.     swear()
  29.     speech = math.random(1,9000)
  30.     sleep(0)
  31. end
Advertisement
Add Comment
Please, Sign In to add comment