GetTeams (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>MrNicNac
Added an example.
>Blocco
No edit summary
 
(5 intermediate revisions by 2 users not shown)
Line 9: Line 9:




{{Example|This is an example of using the method above to get all the teams and remove them. Includes the generic for loop.
{{Example|<pre>
<pre>
local teams = Game:GetService("Teams"):GetTeams()
local TeamTable = Game:GetService("Teams"):GetTeams()


for i,k in pairs(TeamTable) do
if #teams > 0 then
   k:Remove()
  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
end
</pre>
</pre>
}}
}}


[[Category:Methods]]
[[Category:Methods]]

Latest revision as of 22:28, 13 January 2011

GetTeams( )
Returns Table teams
Description: Returns a table of all of the teams.
Member of: Teams


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