@swimmaster07 just use the Died event and remove them from the table then:
--assuming char is defined at the Character
char.Humanoid.Died:connect(function()
for i,plr in pairs(playersAlive) do --assuming your table is named "playersAlive"
if (plr.Character or plr.CharacterAdded:wait()) == char then -- Assuming the table stores the actual "Player" and not the Character or a string value of their name
table.remove(playersAlive, i);
end
end
end) |