Expected (to close '(' at line 1) near 'game'?
I am trying to make a command that gives you a gear but Im getting an error msg "Players.Player1.PlayerGui.Admin.Commands.Gear.Gear.LocalScript:13: ')' expected (to close '(' at line 1) near 'game'" What does this mean?
01 | script.Parent.MouseButton 1 Click:connect( function () |
03 | local ID = script.Parent.Parent.ID.Text |
04 | local PlayerName = script.Parent.Parent.Number.Text |
06 | x = game:GetService( "InsertService" ):LoadAsset(ID) |
07 | for i,v in pairs (x:GetChildren()) do |
08 | v.Parent = game.Players [ "" ..PlayerName.. "" ] .Backpack |
13 | game:GetService( "StarterGui" ):SetCore( "ChatMakeSystemMessage" , { |
14 | Text = "[ADMIN] Given Gear to " ..PlayerName; |
15 | Color = Color 3. new( 40 , 59 , 75 ); |
16 | Font = Enum.Font.SourceSans; |