Advertisement
Guest User

b

a guest
Dec 7th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. local strand = string.dump(function()
  2.  
  3. -----------------------------------------------------------------------------------------------------------------
  4.  
  5. -- the script that you want converted goes here
  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("The converted script is above!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement