The short answer is: you usually can’t directly turn off font transparency in Roblox chat if you mean the built-in TextChatService chat UI, because some chat transparency behavior is controlled by Roblox and can be read-only or overridden by the engine. For the chat window itself, Roblox’s docs say you can customize the chat UI, and the forum discussion notes that certain transparency values are forced by CoreGui/PreferredTransparency rather than fully editable.

What this means

If you’re seeing chat text or chat UI becoming transparent, there are two different cases:

  • Built-in Roblox chat UI: some transparency settings are not fully changeable, so you may not be able to force them off.
  • Custom chat message styling: you can often change properties related to how messages look, but some stroke/transparency behavior in rich text has known limitations.

Practical options

  1. Check the chat configuration you’re editing. Roblox documents separate chat window customization from message styling, so make sure you’re changing the right object.
  1. Inspect PreferredTransparency behavior. The forum thread says the effective transparency can be tied to GuiService.PreferredTransparency, which may limit what you see in chat.
  1. If you control the text rendering, use a custom chat UI. That gives you full control over opacity instead of relying on the default chat system.
  1. If the issue is rich text stroke fading, it may be a platform limitation. Roblox discussion reports that rich text stroke transparency does not always tween the way developers expect.

For players

If you mean “how do I make Roblox chat text less blurry or less transparent as a player,” there usually isn’t a player-side toggle for the font itself. The settings that affect chat appearance are mostly on the experience/developer side or tied to Roblox’s own UI behavior.

For developers

If you’re building the experience and want opaque chat text, the safest route is to:

  • avoid relying on unsupported transparency overrides,
  • test with your current chat configuration,
  • and use a custom UI if exact control matters.

TL;DR: You generally can’t fully disable font transparency in Roblox’s default chat because it’s often controlled by the engine, not just your settings. The reliable fix is usually a custom chat UI or adjusting the specific chat configuration that Roblox does allow.