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)
game:GetService("ReplicatedStorage").Remote.Event.ChatAnnounce.OnClientEvent:Connect(function(msg:string,color:Color3)
game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
Text = msg;
Color = color;
})
end)