GetTeams (Method)
From Legacy Roblox Wiki
(Redirected from GetTeams (Function))
Example
local teams = Game:GetService("Teams"):GetTeams() if #teams > 0 then print( "There are " .. #teams .. " teams." ) print( "They are as follows:" ) for i = 1, #teams do print( "Team " .. i .. ": " .. teams[i].Name ) end else print( "There are no teams!" ) end