Im trying to make system messages be able to have different colors
The rich text shows up and doesn’t change the color of the system message:
I’ve tried changing it from rgb to hex and hardcoding the color
Script that sends the announcments:
local TextChatService = game:GetService("TextChatService")
game.ReplicatedStorage.Events.SendSystemAnnouncment.OnClientEvent:Connect(function(sender, msg, color)
if color then
TextChatService.TextChannels.RBXSystem:DisplaySystemMessage('<font color="'.. color ..'">['.. sender ..']: ' .. msg .. ' </font>')
end
end)
I am not using legacy text chat