main.lua
main.lua
menu/rayfield'))()
Rayfield:Notify({
Title = "Script Executed",
Content = "Simple Bypasser by Devappl",
Duration = 5,
Image = 4483362458,
Actions = {
Ignore = {
Name = "Dismiss",
Callback = function()
end
},
},
})
-- LETTERS:
-- working:
-- 🅰 🅱 🅲 🅳 🅴 🅵 🅶 🅷 🅸 🅹 🅺 🅻 🅼 🅽 🅾 🅿 🆀 🆁 🆂 🆃 🆄 🆅 🆆 🆇 🆈 🆉
-- 🇦 🇧 🇨 🇩 🇪 🇫 🇬 🇭 🇮 🇯 🇰 🇱 🇲 🇳 🇴 🇵 🇶 🇷 🇸 🇹 🇺 🇻 🇼 🇽 🇾 🇿
-- 🅐 🅑 🅒 🅓 🅔 🅕 🅖 🅗 🅘 🅙 🅚 🅛 🅜 🅝 🅞 🅟 🅠 🅡 🅢 🅣 🅤 🅥 🅦 🅧 🅨 🅩
-- patched:
-- ⓐ ⓑ ⓒ ⓓ ⓔ ⓕ ⓖ ⓗ ⓘ ⓙ ⓚ ⓛ ⓜ ⓝ ⓞ ⓟ ⓠ ⓡ ⓢ ⓣ ⓤ ⓥ ⓦ ⓧ ⓨ ⓩ
-- 🄰 🄱 🄲 🄳 🄴 🄵 🄶 🄷 🄸 🄹 🄺 🄻 🄼 🄽 🄾 🄿 🅀 🅁 🅂 🅃 🅄 🅅 🅆 🅇 🅈 🅉
--
-- NUMBERS:
-- working:
-- ⓵ ⓶ ⓷ ⓸ ⓹ ⓺ ⓻ ⓼ ⓽
-- ⓿ ❶ ❷ ❸ ❹ ❺ ❻ ❼ ❽ ❾
-- patched:
0123456789
0️⃣
1️⃣
--2️⃣ 05️⃣
3️⃣
4️⃣ 18️⃣
6️⃣
7️⃣ 2 3 4 5 6 7 8 9
9️⃣
-- 𝟬 𝟭 𝟮 𝟯 𝟰 𝟱 𝟲 𝟳 𝟴 𝟵
-- 0 1 2 3 4 5 6 7 8 9
local letters = {
set1 = {
["a"] = "🅰",
["b"] = "🅱",
["c"] = "🅲",
["d"] = "🅳",
["e"] = "🅴",
["f"] = "🅵",
["g"] = "🅶",
["h"] = "🅷",
["i"] = "🅸",
["j"] = "🅹",
["k"] = "🅺",
["l"] = "🅻",
["m"] = "🅼",
["n"] = "🅽",
["o"] = "🅾",
["p"] = "🅿",
["q"] = "🆀",
["r"] = "🆁",
["s"] = "🆂",
["t"] = "🆃",
["u"] = "🆄",
["v"] = "🆅",
["w"] = "🆆",
["x"] = "🆇",
["y"] = "🆈",
["z"] = "🆉",
},
set2 = {
["a"] = "🅐",
["b"] = "🅑",
["c"] = "🅒",
["d"] = "🅓",
["e"] = "🅔",
["f"] = "🅕",
["g"] = "🅖",
["h"] = "🅗",
["i"] = "🅘",
["j"] = "🅙",
["k"] = "🅚",
["l"] = "🅛",
["m"] = "🅜",
["n"] = "🅝",
["o"] = "🅞",
["p"] = "🅟",
["q"] = "🅠",
["r"] = "🅡",
["s"] = "🅢",
["t"] = "🅣",
["u"] = "🅤",
["v"] = "🅥",
["w"] = "🅦",
["x"] = "🅧",
["y"] = "🅨",
["z"] = "🅩",
},
set3 = {
["a"] = "🇦 ",
["b"] = "🇧 ",
["c"] = "🇨 ",
["d"] = "🇩 ",
["e"] = "🇪 ",
["f"] = "🇫 ",
["g"] = "🇬 ",
["h"] = "🇭 ",
["i"] = "🇮 ",
["j"] = "🇯 ",
["k"] = "🇰 ",
["l"] = "🇱 ",
["m"] = "🇲 ",
["n"] = "🇳 ",
["o"] = "🇴 ",
["p"] = "🇵 ",
["q"] = "🇶 ",
["r"] = "🇷 ",
["s"] = "🇸 ",
["t"] = "🇹 ",
["u"] = "🇺 ",
["v"] = "🇻 ",
["w"] = "🇼 ",
["x"] = "🇽 ",
["y"] = "🇾 ",
["z"] = "🇿 ",
},
}
local numbers = {
set1 = {
["0"] = "⓿",
["1"] = "❶",
["2"] = "❷",
["3"] = "❸",
["4"] = "❹",
["5"] = "❺",
["6"] = "❻",
["7"] = "❼",
["8"] = "❽",
["9"] = "❾",
},
set2 = {
["1"] = "⓵",
["2"] = "⓶",
["3"] = "⓷",
["4"] = "⓸",
["5"] = "⓹",
["6"] = "⓺",
["7"] = "⓻",
["8"] = "⓼",
["9"] = "⓽",
},
}
if char:match("%a") then
if lettersBypass then
converted = converted .. char
else
converted = converted .. (letters_set[lower_char] or char)
end
elseif char:match("%d") then
if numbersBypass then
converted = converted .. char
else
converted = converted .. (numbers_set[char] or char)
end
else
converted = converted .. char
end
end
return converted
end
game:GetService("ReplicatedStorage"):FindFirstChild("DefaultChatSystemChatEvents").
SayMessageRequest:FireServer(msg,"All")
else
chat:SendAsync(msg)
end
end
loadstring(game:HttpGet("https://raw.githubusercontent.com/78n/SimpleSpy/main/
SimpleSpySource.lua"))()
end,
})