Hello everyone!
i finally figure out how to do the chat of emoji to character. Special thanks to @ExcessEnergy for helping me with a script from here How Would I Edit a Players Message? - #6 by ExcessEnergy.
To do the chat thing, you have to do the following,
- You have to create a module script at
Chat > ChatModules
. - Write the source/script at the module script.
- You’re done!
Module Script
local toemoji = require(8581940575)
local functionId = "editText"
local function doFilter(speaker, messageObject, channelName)
messageObject.Message = toemoji(messageObject.Message)
end
local function runChatModule(ChatService)
ChatService:RegisterFilterMessageFunction(functionId, doFilter)
end
return runChatModule
To get the chat modules
- Press
Play
/Test game
button - Select all the children of
game.Chat
- Press
Copy
atHome
- Press
Paste
atHome
- Move all the the things you paste to the
game.Chat
- You now have the module!