Advertisement
DaviALmeida

Untitled

Jul 7th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. subs = {"chair", "bed", "thing", "table", "car", "human", "woman", "man", "dog", "cat", "Josh", "acb", "ScriptzMania", "XLua", "linerider64", "Fenrier", "street", "seat"}
  2. verbs = {"kills", "sits", "be", "does", "fishs", "eats", "digs", "sleeps", "runs", "swims", "walks", "jumps", "dies", "lives"}
  3. adjs = {"ugly", "nice", "beautiful", "weird", "cool", "epic", "hard", "soft", "fail", "awesome", "fuzzy", "funny"}
  4. ont = {"on top of a", "behind a", "on front of a", "next to a"}
  5.  
  6. str = ""
  7. for i=1, 2 do
  8. str = str..subs[math.random(1,#subs)].." "
  9. str = str..verbs[math.random(1,#verbs)].." "
  10. str = str.."a "..adjs[math.random(1,#adjs)].." "
  11. str = str..subs[math.random(1,#subs)].." "
  12. str = str..ont[math.random(1,#ont)].." "
  13. str = str..subs[math.random(1,#subs)]..". "
  14. end
  15.  
  16. local msg = Instance.new("Message",workspace)
  17. msg.Text = str
  18. wait(10)
  19. msg:remove()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement