GetPlayers (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Legend26
Undo revision 49070 by Itunes89 (talk) This isn't deprecated.
>Legend26
Undo revision 49070 by Itunes89 (talk) This isn't deprecated.
(No difference)

Revision as of 23:34, 22 January 2012

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


Example
for _,player in ipairs(game.Players:GetPlayers()) do
   player.Character:MoveTo(Vector3.new(0, 50, 0))
end