How to make a gui say the winners in a round based game?

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)
4 Likes