Advertisement
Meliodas0_0

Untitled

Jul 9th, 2019
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. local strand = string.dump(function()
  2.  
  3. -----------------------------------------------------------------------------------------------------------------
  4.  
  5. print("lol")
  6.  
  7. -----------------------------------------------------------------------------------------------------------------
  8. end)
  9.  
  10. s = "loadstring('"
  11. for i = 1, strand:len() do
  12. s = s .. "\\" .. strand:sub(i, i)..:byte()
  13. end
  14.  
  15. s = s .. "')()"
  16. print("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~")
  17. print(s)
  18. print("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~")
  19. print("")
  20. print("Obfuscated by Nova355killer_")
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30. local Script = string.dump(
  31. function()
  32. --// script
  33. end
  34. )
  35. local Result = ""
  36. for i=1, string.len(Script) do
  37. Result = Result.."'\\"..string.byte(Script, i).."',"
  38. end
  39.  
  40. local MegaVariable = "local DUMPED = {"..Result.."} loadstring(table.concat(DUMPED, ''))"
  41. print(MegaVariable)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement