hello i'm creating a roblox system that if an admin presses a textbutton a message will appear in the chat but it is not FilteringEnabled I typed the first script here without filtering enabled i hope you can help me?
bc = BrickColor.new("Really red") function Clicked() game.StarterGui:SetCore("ChatMakeSystemMessage", { Text = "[Notification] [fire brigade] Fire at the airport."; Font = Enum.Font.Cartoon; Color = bc.Color; FontSize = Enum.FontSize.Size96; }) end script.Parent.MouseButton1Down:connect(Clicked)
First of you want to use a remote function to get access to the chat when you got filtering enabled on and you get access to the guis truh a local script (can do it with server script to but its harder) and not truh the game.startergui as the startergui is what it puts in the playergui when he/she spawns. I know i didnt include any code as im just explaining what i belive is the problem. hope this helps!