local playerList = guiCreateGridList ( 0.80, 0.10, 0.15, 0.60, true )
guiGridListAddColumn( playerList, "Player", 0.85 )
for id, player in ipairs(getElementsByType("player")) do
local row = guiGridListAddRow ( playerList )
guiGridListSetItemText ( playerList, row,1, getPlayerName ( player ), false, false )
end