players = game.Players:GetPlayers() for _,v in pairs(players) do if(v.Character) then v.Character:MoveTo(Vector3.new(243,1.5,-225.4)) wait(15) survivors = v.Name survivors = survivors..", "..v.Name Finished = Instance.new("Message") Finished.Parent = game.Workspace Finished.Text = "The following have survived:" (survivors)
It doesn't work. It is supposed to list the survivor names.
Survivors = {} players = game.Players:GetPlayers() for _,v in pairs(players) do if(v.Character) then v.Character:MoveTo(Vector3.new(243,1.5,-225.4)) wait(15) table.insert(Survivors,v.Name) Finished = Instance.new("Message") Finished.Parent = game.Workspace Finished.Text = "The following have survived"..table.concat(Survivors,',')
TADA
+1 if this helped!