if you just want everything to be on one text label then use concatenation, here is an example and modify it to you needs
local Winners = game.Players:GetPlayers()
local WinnerString = ''
for i,v in pairs(Winners) do
WinnerString = WinnerString .. v.Name .. " "
end
print(WinnerString)