If you mean how to copy a slot, simply deep copy the table from the first slot and save that value to the target slot. The reason you need to deep copy is so the changes in the one slot don’t affect the other. Here’s the code for deep copying tables:
local function deepCopy(t: {}): {}
local clone = {}
for k, v in pairs(t) do
--you may want to add a case for instances as well
if type(v) == "table" then
clone[k] = deepCopy(v)
else
clone[k] = v
end
end
return clone
end