I’m using ZonePlus for this, and I’m curious how I can count the amount of players in the zone. local playersArray = joinZone:getPlayers() simply returns a table. I tried doing
local playersArray = joinZone:getPlayers()
print(#playersArray)
but it printed 0, even though one person was in the area.
How am I supposed to do this?