Answered by
4 years ago Edited 4 years ago
1 | local Event = game.ReplicatedStorage.BroadcastWinner |
3 | Event.OnClientEvent:Connect( function (Player, Amount, MapName) |
4 | game.StarterGui:SetCore( "ChatMakeSystemMessage" , { |
5 | Text = "[SYSTEM] " ..Player.Name.. " won the obby race on the map " ..MapName.. " and recieved " ..Amount.. " Coins!" ; |
6 | Font = Enum.Font.SourceSansBold; |
7 | Color = Color 3. fromRGB( 239 , 184 , 56 ) |
When you concantenate it does not automatically convert to string you should instead the player's names using Player.Name which is a string and would remove your error