As the title says, is there a way to give tips to players using in-game chat, like the one in Phantom Forces, that gives tip every --- seconds. I have no clue how to do this, and I did a lot of research but none of the result is relevant.
It's pretty easy, use this in a local script and it will make a server message.
1 | game:GetService( "StarterGui" ):SetCore( "ChatMakeSystemMessage" , { |
2 | Text = "Welcome to my game!" ; --This is a required field, it will allow you to set the message to any string you want. |
3 | Color = Color 3. new( 0 , 1 , 1 ); --This is optional, it will allow you to add a custom color to the chat, however will default to Color3.new(255/255, 255/255, 243/255) if not set. |
4 | Font = Enum.Font.SourceSans; -- Optional, defaults to Enum.Font.SourceSansBold --This is optional, this field will allow you to change the font of the text to any of the current 7 fonts you want. |
5 | FontSize = Enum.FontSize.Size 24 ; -- Optional, defaults to Enum.FontSize.Size18 --This is once again optional, and you can change it to any of the existing sizes. |
6 | } ) |
You can find more about it on the Wiki with this link: http://wiki.roblox.com/index.php?title=API:Class/StarterGui/SetCore#ChatMakeSystemMessage