I have a question about coding player count,I used Players.NumPlayer but it says NumPlayer not part of Players so how do I count players?
--\\ Services //-- local players = game:GetService("Players") --\\ Values //-- local numPlayers = players.NumPlayers -- does the same thing below but in 1 line of code local player_tab = players:GetPlayers() -- returns a table/array of players local numPlayers2 = (#player_tab) -- get the number of players from the table/array