Keeping accesoires on death

still doesn’t work it doesn’t has any error just doesn’t do it :frowning:

Are they being parented to the player?

ServerScriptService.Script:19: invalid argument #3 to 'format' (string expected, got Instance)

This error is popping up :frowning:

for index = #keep, 1, -1 do
	local name = keep[index]
	local accessory = Armor:FindFirstChild(name)

	if accessory then
		keep[index] = accessory
	else
		table.remove(keep, index)
		warn(("%s is not a valid member of %s"):format(name, Armor.Name))
	end
end

still doesn’t work why why why???

Have even tried printing the accessory yet like what I have said multiple times already?

If they do get printed, then it’s working. The reason why it does not stay with the player is because you have to weld it to the player.

how to weld it, I don’t know,sadly?