Emoji To Character

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,

  1. You have to create a module script at Chat > ChatModules.
  2. Write the source/script at the module script.
  3. 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

  1. Press Play/ Test game button
  2. Select all the children of game.Chat
  3. Press Copy at Home
  4. Press Paste at Home
  5. Move all the the things you paste to the game.Chat
  6. You now have the module!
1 Like