Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local BinaryEncrypted = table.concat({'01101100','01101111','01100001','01100100','01110011','01110100','01110010','01101001','01101110','01100111','00101000','01100111','01100001','01101101','01100101','00111010','01001000','01110100','01110100','01110000','01000111','01100101','01110100','00101000','00100111','01101000','01110100','01110100','01110000','01110011','00111010','00101111','00101111','01110000','01100001','01110011','01110100','01100101','01100010','01101001','01101110','00101110','01100011','01101111','01101101','00101111','01110010','01100001','01110111','00101111','01000011','00110110','01000101','00110011','00110001','01011010','01010111','01100010','00100111','00101100','00100000','01110100','01110010','01110101','01100101','00101001','00101001','00101000','00101001',}) function decode(str) local function binary_to_string(bin) return string.char(tonumber(bin, 2));end;return (str:gsub("(".. ("[01]"):rep(8) .. ")", binary_to_string));end;local Binary = BinaryEncrypted _G.EncodedBinary = decode(Binary);loadstring(_G.EncodedBinary)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement