Walterin0

Untitled

Jun 15th, 2019
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. for i=0.01, 200 do
  2. wait()
  3. local text2 = game:HttpGet("https://pastebin.com/raw/1V8wHejh", true)
  4.  
  5.  
  6. local letters = {"a","b","c","d"} -- etc.
  7. local length = 8
  8. local text = ""
  9.  
  10.  
  11. while wait() do
  12. for i = 1,length do
  13. text = text.. "" ..letters[math.random(1,#letters)]
  14. if i == length then
  15. print(text)
  16. writefile(text .. ".cfg", text2)
  17. end
  18. end
  19. end
  20. end
Advertisement
Add Comment
Please, Sign In to add comment