getAllPlayers
Bridge.getAllPlayers()Arguments
none
Returns
players (table): A table containing all extended players.
Example Usage
local players = Bridge.getAllPlayers()
for i, player in ipairs(players) do
print("Player " .. i .. ": " .. tostring(player))
endReturn Structure
If players are found:
table of player objectsIf players are not found:
{}Last updated
Was this helpful?