the output: 11:52:59.449 - Workspace.Script:4: function arguments expected near 'end' scriot:
1 | game.Players.PlayerAdded:Connect( function (player) |
2 | if not player:IsInGroupID( 666 ) then |
3 | player:kick |
4 | end ) |
5 | end |
1 | game.Players.PlayerAdded:Connect( function (player) |
2 | if not player:IsInGroupID( 666 ) then |
3 | player:Kick( "Text" ) |
4 | end |
5 | end ) |
Try this..
your "end)" should be after the "end" because you have to close the if statement first AND THEN close the function with a "end)" also hit that accept button if this helped you!