Advertisement
ERROR_CODE

blacklist

Dec 1st, 2024
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.70 KB | None | 0 0
  1. function createfolders(path)
  2. local pathtbl = string.split(path, "/")
  3. for i, v in pairs(pathtbl) do
  4. if i == 1 then
  5. if not isfolder(v) then
  6. makefolder(v)
  7. end
  8. else
  9. local newpath = pathtbl[1]
  10. for i2=2, i-1 do
  11. newpath = newpath.. "/" ..pathtbl[i2]
  12. end
  13. newpath = newpath.. "/" ..v
  14. if not isfolder(newpath) then
  15. makefolder(newpath)
  16. end
  17. end
  18. end
  19. end
  20. local Vale_1 = false
  21. if not isfile("Test.ECCS") then
  22. writefile("Test.ECCS", "false")
  23. end
  24. local BlackList = 11111111
  25. if BlackList then
  26. writefile("Test.ECCS", "true")
  27. end
  28. spawn(function()
  29. while wait(1) do
  30. if Value_1 == true then
  31. local value = 0
  32. spawn(function()
  33. while wait() do
  34. value = value + 1
  35. createfolders(""..value)
  36. end
  37. end)
  38. end
  39. end
  40. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement