Changing the font/size on the username inside the chat box

Is there a way I can remove the brackets, the colour and change the Font/size on the username display in chat? I can’t find anything on YT or anywhere else, so I thought I’d ask here
image

I know it is possible, but I can’t help you.

Yeah same, I see it get done in a couple of games, but there wasn’t a good tutorial where I looked

Try to experiment:

Change everything in the settings of the chat and see what it do.

This publication contains the options to customize the text.

local chatService = require(game.ServerScriptService:WaitForChild("ChatServiceRunner"):WaitForChild("ChatService"))
chatService.SpeakerAdded:Connect(function(playerName)
	local speaker = chatService:GetSpeaker(playerName)
	speaker:SetExtraData("Font", Enum.Font.FredokaOne)
	speaker:SetExtraData("TextSize", 40)
end)

image