Hi my names is pixeluted and i want print full table i using table.concat here is my script
local players = game.Players
local Survived = {}
local Died = {}
wait(3)
for y,player in pairs(players:GetChildren()) do
table.insert(Survived,player)
local PlayerCharacter = workspace:WaitForChild(player.Name)
PlayerCharacter.Humanoid.Died:Connect(function()
table.remove(Survived,y)
table.insert(Died,player)
print(table.concat(Survived,","))
print(table.concat(Died,","))
end)
end
while wait(5) do
print(table.concat(Survived,","))
print(table.concat(Died,","))
end
And this is error i have Screenshot by Lightshot
Thank for reading