GetPlayers (Method)

From Legacy Roblox Wiki
Revision as of 01:17, 20 March 2012 by >Legend26 (It's not guaranteed that the character exists.)
Jump to navigationJump to search
GetPlayers( )
Returns table
Description: Returns a table containing all the players in the server.
Member of: Players


Example

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