JasonJJK

ok

Feb 29th, 2020 (edited)
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.75 KB | None | 0 0
  1. local website = "http://requestbin.net/ip" -- Website with raw IP
  2. local outputfilename = "output.output" -- Literally name this anything this is what the script will output as file
  3. local toclipboard = true -- set the output to clipboard
  4.  
  5.  
  6.  
  7.  
  8. local loadstringwebsite = tostring(game:HttpGet((website),true));
  9. local byte = ""
  10. for i = 1, string.len(loadstringwebsite) do
  11.     byte = byte..[[\]]..string.byte(loadstringwebsite,i,i);
  12. end
  13. local base64amount = 2 -- will increase exponentially per number higher! (max 20 recommended) -- Make sure you remember this number for decoding
  14. local b64 = byte;
  15. for i = 1, base64amount do
  16.     local addbase64 = syn.crypt.base64.encode(b64);
  17.     b64 = addbase64;
  18. end
  19. writefile(outputfilename,b64)
  20. setclipboard(b64)
Add Comment
Please, Sign In to add comment