Advertisement
Nova355killer

multi byte

Jul 28th, 2020
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. local code = [[
  2.  
  3. ]]
  4.  
  5. --How many times obfuscate the code:
  6. --The higher number you put here the longer will it take
  7. local HowManyTimesObfuscate = 6
  8.  
  9. function bytef(code)
  10. local r = ""..[["]]
  11. for i in code:gmatch(".") do
  12. r=r..[[\]]..i:byte()
  13. end
  14. r=r..[["]]
  15. return r
  16. end
  17.  
  18. local a = bytef(code)
  19. for i = 1, HowManyTimesObfuscate do
  20. local b = a
  21. a = bytef(b)
  22. end
  23. print(a)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement