How to change system chat font?

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.

1 Like

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.

image

image

2 Likes

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.

1 Like

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.

1 Like

game.TextChatService.ChatWindowConfiguration.FontFace = Enum.Font.Bangers

1 Like

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😭

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.