-- Message Settings
local rawMessage = "shit this is crazy"
local prefix = "</> " -- Cool prefix

-- Unicode encode
local function unicodeEncode(text)
    local encoded = ""
    for i = 1, #text do
        local char = text:sub(i, i)
        encoded = encoded .. "\\u" .. string.format("%04X", char:byte())
    end
    return encoded
end

-- Unicode decode
local function unicodeDecode(encodedText)
    return encodedText:gsub("\\u(%x%x%x%x)", function(hex)
        return string.char(tonumber(hex, 16))
    end)
end

-- Insert separator (helps bypass filters)
local function insertSeparator(text)
    local separator = string.char(239, 191, 184)
    local result = ""
    for i = 1, #text do
        result = result .. text:sub(i, i)
        if i < #text then
            result = result .. separator
        end
    end
    return result
end

-- Process and print
local encoded = unicodeEncode(rawMessage)
local decoded = unicodeDecode(encoded)
local bypassedMessage = insertSeparator(prefix .. decoded)

print("Bypassed Chat Message:")
print(bypassedMessage)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: