First, you can start off by using a method called GetPropertyChangedSignal()
Then you can store the positions part in a variable -- Which we can get later
Once the position of that part is changed it will call the function and then all we do is set your clone parts position to the parts original position then all you have to do is update the position of the old parts.
1 | local part = game.Workspace.Part |
3 | local previousPosition = part.Position |
5 | part:GetPropertyChangedSignal( "Position" ):Connect( function () |
6 | clonedPart.Position = previousPosition |
7 | previousPosition = part.Position |
Instance:GetPropertyChangedSignal()
If this helps an upvote or solve would be appreciated. Good luck!