I am trying to make the roblox chat say 'Welcome to my game' but it keeps having an error
13:28:42.679 - Players.tjtorin.PlayerGui.LocalScript:2: ')' expected (to close '(' at line 1) near '=' Here is my code:
1 | game:GetService( "StarterGui" ):SetCore( "ChatMakeSystemMessage" ,( |
2 | Text = "Welcome to my game!" |
3 | Color = Color 3. new( 255 / 255 , 0 / 255 , 0 / 255 ) |
4 | Font = Enum.Font.SourceSansLight |
5 | FontSize = Enum.FontSize.Size 32 |
6 | )) |
You are using parenthesis instead of brackets. On lines 1 and 6, change the inner parenthesis into brackets like so:
1 | game.StarterGui:SetCore( "ChatMakeSystemMessage" , { --Bracket |
2 | Text = "Welcome to my game!" ; --Semicolons!! |
3 | Color = Color 3. new( 255 , 0 , 0 ); |
4 | Font = Enum.Font.SourceSansLight; |
5 | FontSize = Enum.FontSize.Size 32 ; |
6 | } ) --Bracket |
Hope that helps