Hey, so I’m trying to make mainly design edits to the chat, and I know I’m supposed to work with ChatModules but I could not find a proper guide or tutorial how to properly work with them, baiscally what I need is:
Color the player’s username to a pre-set color by me
Change the font of a player to a pre-set font by me Animate the chat with the typewriter effect
Any ideas?
Thanks alot.
Nevermind sorry for my previous wrong answer, this should help you link
EDIT: You can make it so when a player speaks they don’t send a message but a secondary script writes for them instead choosing the font.
local ChatService = require(game:GetService("ServerScriptService"):WaitForChild("ChatServiceRunner").ChatService)
local speaker = ChatService:GetSpeaker(player.Name)
if speaker then
speaker:SetExtraData("ChatColor", Color3.new(1, 0, 0))
end