I already searched in ROBLOX Wiki but i didn't found anything. I want send a message from a Script to the default ROBLOX Chat, like in Ultimate Driving or Mad Murderer but i don't know how.
To do this, you would use SetCoreGui
.
1 | game.StarterGui:SetCore( "ChatMakeSystemMessage" , { |
2 | Text = "[theCJarmy7] this can make it seem like I chatted something!" |
3 | } ) |
There are three customization items for this, color, font, and font size.
1 | game.StarterGui:SetCore( "ChatMakeSystemMessage" , { |
2 | Text = "Hii!!!" , |
3 | Color = Color 3. new( 0 , 1 , 1 ), |
4 | Font = Enum.Font.Arial, |
5 | FontSize = Enum.FontSize.Size 24 , |
6 | } ) |