How do I change the TextColor in TextChatService?

Hi I’m currently trying to make chat colors more darker but the Script I made won’t work on the colors and it doesn’t give me any F9 Error Logs.

This is the Script I made:

local TextChatService = game:GetService("TextChatService")
local BubbleChatConfiguration = TextChatService:WaitForChild("BubbleChatConfiguration")

BubbleChatConfiguration.FontFace = Font.fromName(
	"GothamSSm",
	Enum.FontWeight.Heavy,
	Enum.FontStyle.Normal,
	Enum.FontSize.Size60,
	BubbleChatConfiguration.TextColor3 == Color3.fromRGB(0, 0, 0)
)

I tried to use Color3.new and Color3.fromRGB and also tried to turn this Local Script into a Server Script but still the same problem and has no Reaction and Logs

You have it inside the Font config. Put it outside of it:

local TextChatService = game:GetService("TextChatService")
local BubbleChatConfiguration = TextChatService:WaitForChild("BubbleChatConfiguration")

BubbleChatConfiguration.FontFace = Font.fromName(
	"GothamSSm",
	Enum.FontWeight.Heavy,
	Enum.FontStyle.Normal,
	Enum.FontSize.Size60
)
BubbleChatConfiguration.TextColor3 = Color3.fromRGB(255, 0, 0)
3 Likes

Works and I also finally know how to change the Chat size too.

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