LegacyChatService doesn't display SystemMessages from using SetCore

I’m attempting to make announcements in the chat, for reactor events. Using LegacyChatService and when I try to make a System Message using a localscript with;

game:GetService("ReplicatedStorage").Remote.Event.Changed.OnClientEvent:Connect(function(msg:string,color:Color3)
	game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
		Text = msg;
		Color = color;
	})
end)

There isn’t a system message…

Correct me if im wrong, But i am pretty sure this works on the newer chat.

I just realised, it was a typo… lol.

game:GetService("ReplicatedStorage").Remote.Event.ChatAnnounce.OnClientEvent:Connect(function(msg:string,color:Color3)
	game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
		Text = msg;
		Color = color;
	})
end)

the ChatAnnounce was Changed, Sorry.

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