MADE BY LUA#4402
FEATURE:
- TRANSLATE UR ENGLISH TEXT TO BINARY
SCRIPT:
--[[
Made by OwlCodes
_______ _ _ ____ _
|__ __| | | | | | _ \ (_)
| | ___ __ __| |_ | |_ ___ | |_) | _ _ __ __ _ _ __ _ _
| | / _ \\ \/ /| __| | __|/ _ \ | _ < | || '_ \ / _` || '__|| | | |
| || __/ > < | |_ | |_| (_) | | |_) || || | | || (_| || | | |_| |
|_| \___|/_/\_\ \__| \__|\___/ |____/ |_||_| |_| \__,_||_| \__, |
__/ |
|___/
]]
local Message = "Anything you put here will be converted!" --// The message you want converted to binary :D
--// Nerd shit ( just a table storing shit)
local Binary = {
A = "00001";
B = "00010";
C = "00011";
D = "00100";
E = "00101"; -- 5
F = "00110";
G = "00111";
H = "01000";
I = "01001";
J = "01010"; -- 10
K = "01011";
L = "01100";
M = "01101";
N = "01110";
O = "01111"; -- 15
P = "10000";
Q = "10001";
R = "10010";
S = "10011";
T = "10100"; -- 20
U = "10101";
V = "10110";
W = "10111";
X = "11000";
Y = "11001"; -- 25
Z = "11010";
Space = "00100000";
QMark = "00111111";
Period = "00101110";
EXMark = "00100001";
}
--// Function because why the fuck not
local function ConvertDigit(Digit)
if Digit == "A" then
return Binary.A
end
if Digit == "B" then
return Binary.B
end
if Digit == "C" then
return Binary.C
end
if Digit == "D" then
return Binary.D
end
if Digit == "E" then
return Binary.E
end
if Digit == "F" then
return Binary.F
end
if Digit == "G" then
return Binary.G
end
if Digit == "H" then
return Binary.H
end
if Digit == "I" then
return Binary.I
end
if Digit == "J" then
return Binary.J
end
if Digit == "K" then
return Binary.K
end
if Digit == "L" then
return Binary.L
end
if Digit == "M" then
return Binary.M
end
if Digit == "N" then
return Binary.N
end
if Digit == "O" then
return Binary.O
end
if Digit == "P" then
return Binary.P
end
if Digit == "Q" then
return Binary.Q
end
if Digit == "R" then
return Binary.R
end
if Digit == "S" then
return Binary.S
end
if Digit == "T" then
return Binary.T
end
if Digit == "U" then
return Binary.U
end
if Digit == "V" then
return Binary.V
end
if Digit == "W" then
return Binary.W
end
if Digit == "X" then
return Binary.X
end
if Digit == "Y" then
return Binary.Y
end
if Digit == "Z" then
return Binary.Z
end
if Digit == " " then
return Binary.Space
end
end
--// The shit you can read
local MyMsg = string.split(Message,"")
local NM = ""
for i,v in pairs(MyMsg) do
if v == " " then
NM = NM.."|"..Binary.Space
else
if v == "?" then
NM = NM.."|"..Binary.QMark
else
if v == "!" then
NM = NM.."|"..Binary.EXMark
else
if v == "." then
NM = NM.."|"..Binary.Period
else
local C = string.upper(v)
isCap = false
SendDigit = string.upper(v)
local Converted = ConvertDigit(SendDigit)
if v == C then
isCap = true
NM = NM.."|010"..Converted
else
NM = NM.."|011"..Converted
end
end
end
end
end
end
warn(NM) --// This is the final product!
setclipboard(NM) --// If you have this function you can use this :3