What is the code for counting number of players in a zone, and what is the difference between these?
math.count (##...##)
local count = math.count(1,2,3,4,5,6) assert(count == 6)
and
string.count
int string.count(string text, string search)
One thing I understood about string.count is it is an option to search and count "[ ]-Alphabet" to get no. of alphabets in text "[ ]-Text".