So I created a text to emoji function and its being kinda buggy.
local Emojis = require(script.Emojis)
local function GetEmojis(Msg)
for i, v in pairs(Emojis) do
Msg = string.gsub(Msg, i, v)
end
return Msg
end
Emojis Module:
Its fine for the most part, but whenever I try to convert B-)
, it also triggers -_-
for some reason.