GetPlayers (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Emess
No edit summary
>ArceusInator
example
Line 2: Line 2:
|arguments =  
|arguments =  
|returns = [[Table]] ''list of players''
|returns = [[Table]] ''list of players''
|description = Gives you a list of all the players in a server.
|description = Gives you a table containing all the players in the server.
|object = Players
|object = Players
}}</onlyinclude>
}}</onlyinclude>
{{Example|<pre>
local players = game.Players:GetPlayers()
for i = 1, #players do
  players[i].Character:MoveTo( Vector3.new( 0, 50, 0 ) )
end
</pre>}}
[[Category:Methods]]
[[Category:Methods]]

Revision as of 04:04, 30 December 2010

GetPlayers( )
Returns Table list of players
Description: Gives you a table containing all the players in the server.
Member of: Players









Example
local players = game.Players:GetPlayers()

for i = 1, #players do
   players[i].Character:MoveTo( Vector3.new( 0, 50, 0 ) )
end