Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local website = "http://requestbin.net/ip" -- Website with raw IP
- local outputfilename = "output.output" -- Literally name this anything this is what the script will output as file
- local toclipboard = true -- set the output to clipboard
- local loadstringwebsite = tostring(game:HttpGet((website),true));
- local byte = ""
- for i = 1, string.len(loadstringwebsite) do
- byte = byte..[[\]]..string.byte(loadstringwebsite,i,i);
- end
- local base64amount = 2 -- will increase exponentially per number higher! (max 20 recommended) -- Make sure you remember this number for decoding
- local b64 = byte;
- for i = 1, base64amount do
- local addbase64 = syn.crypt.base64.encode(b64);
- b64 = addbase64;
- end
- writefile(outputfilename,b64)
- setclipboard(b64)
Add Comment
Please, Sign In to add comment