How do I delete messages in the chat?

As said in the title I would like to know how to delete messages in the chat.

Also how do I create a message the only one person can see?(Probably on a local script id assume.)
Thanks!

1 Like

this already exists in roblox, you can do so by typing “/w” before a username or display name in chat

I think he means a “system” message, which is easily possible with something like this:

game.StarterGui:SetCore( "ChatMakeSystemMessage",  { Text = "Message", 
Color = Color3.fromRGB( 255,0,0 ), 
Font = Enum.Font.Arial, 
FontSize = Enum.FontSize.Size24 
} )
1 Like