Want to make a Cloned object go to part position

Hello, Its ExoticTwix. My question today is that I made a script where when you click the GUI the player model is cloned there. I want to make it so it go to where a part in work space is. So when that part moves to a different position the clone position changes to that position. Thanks :slight_smile:

What I am using for position: really:SetPrimaryPartCFrame(CFrame.new(23, 12.5, 52))

Is that what you were looking for?

part1:GetPropertyChangedSignal("Position"):Connect(function()
    part2:SetPrimaryPartCFrame(part1.CFrame)
end)