Advertisement
Scriptorz5

sent generator

May 6th, 2018
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.50 KB | None | 0 0
  1. function rand()
  2. nums = {"Once", "Twice", "Thrice"}
  3. sbjs = {"builderman", "Telamon", "Anaminus", "Clone512", "xLEGOx", "reesemcblox", "Google", "Bob371", "A stick"}
  4. action = {"kill", "shoot", "blox", "attack", "massacre", "nuke", "eat"}
  5. past_tense = {"killed", "shot", "bloxxed", "attacked", "massacred", "nuked", "ate", "raped", "licked"}
  6. actions = {"kills", "floodchecks", "fortifies", "shoots", "bloxxes", "attacks", "massacres", "nukes", "pours", "eats", "finds", "makes", "chases", "stalks", "smells", "sniffs", "throws"}
  7. ind = {"on a computer", "in a cup", "on pluto", "in space", "at the beach", "on mars", "with a club", "next to a monkey", "with a bat", "on a plate", "with a speaker", "next to a chair", "with an alien", "in a pit", "underground", "underwater", "on a pickle", "on a knife", "next to a truck", "in a grain tower", "at the gym", "on the moon"}
  8. objs = {"gasoline", "bones", "skunks", "money", "monkeys", "wood", "fish", "water", "apples", "bannanas", "chickens", "astroids", "meteorites", "cakes", "pickles", "soap", "USB Plugs", "TNT", "nitroglycerin", "peripherals"}
  9. advbs = {"greedily", "evily", "stupidly", "haughtily", "piteously", "annoyingly", "tauntingly", "happily", "angrily", "painfully", "masterfully", "pitifully", "doubtfully", "quickly", "slowly", "awkwardly", "skillfully", "unskillfully", "unhappily", "stealthfully", "sneakily", "undoubtedly", "confidentially", "unconfidentially", "accidentally", "crossly", "gladly", "nearly", "reluctantly", "sternly", "gracefully", "greedily", "nerviously", "inquisitively", "suspiciously"}
  10. advs = {"blue", "smelly", "rabid", "ugly", "filthy", "red", "yellow", "green", "orange", "angry", "brown", "shiny", "dull", "hairy", "smooth", "dead"}
  11.  
  12. a = "atu1000"
  13. b = "shot"
  14.  
  15. while true do
  16.  
  17. s = math.random(1, 7)
  18. if s == 1 then
  19. b = action[1]
  20. end
  21. if s == 2 then
  22. b = action[2]
  23. end
  24. if s == 3 then
  25. b = action[3]
  26. end
  27. if s == 4 then
  28. b = action[4]
  29. end
  30. if s == 5 then
  31. b = action[5]
  32. end
  33. if s == 6 then
  34. b = action[6]
  35. end
  36. if s == 7 then
  37. b = action[7]
  38. end
  39.  
  40. s = math.random(1, 9)
  41. if s == 1 then
  42. a = sbjs[1]
  43. end
  44. if s == 2 then
  45. a = sbjs[2]
  46. end
  47. if s == 3 then
  48. a = sbjs[3]
  49. end
  50. if s == 4 then
  51. a = sbjs[4]
  52. end
  53. if s == 5 then
  54. a = sbjs[5]
  55. end
  56. if s == 6 then
  57. a = sbjs[6]
  58. end
  59. if s == 7 then
  60. a = sbjs[7]
  61. end
  62. if s == 8 then
  63. a = sbjs[8]
  64. end
  65. if s == 9 then
  66. a = sbjs[9]
  67. end
  68.  
  69. hint = Instance.new("Hint")
  70. hint.Parent = workspace
  71. hint.Text = a.. "" ..b.. ""
  72. wait(3)
  73. hint:remove()
  74. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement