I have a system chat system with TextChatService. I’m wondering how I can change the font of the System Chat. I know how to change color, but not the font.
I don’t know wether you mean how to change it through a script but you can change the chat font through the properties tab:
Under TextChatService select ChatWindowConfiguration and in its properties change FontFace to a font of your choice.
Thanks! I will probably mark you as solution. I was more wondering how to change the font via script, since I’m only trying to change the font of the system chat, and not of the player chat.
Oh I was confused on what you meant with “system chat”. Now I understand, my apologies.
I can’t really script tho so I’d wait for someone else to answer it tho.
game.TextChatService.ChatWindowConfiguration.FontFace = Enum.Font.Bangers
That will cause an error, you have to do this instead
game.TextChatService.ChatWindowConfiguration.FontFace = Font.fromEnum(Enum.Font.Bangers)
why did they make fonts so confusing😭
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.