Root.Position only teleports the root and not the rest of the body

So as this image shows

The root is at the wanted position, yet the rest of the body (plane) isnt there.
Here is the code + welding:

local Randomposition = AirDropPoints.AirdropPoint1.Position + Vector3.new(math.random(-200,200), 150, math.random(-200,200))
CargoClone.Root.Position = Randomposition

And here is the welding
image
image
image
If someone could help me fix i would be thankfull

just do

local Randomposition = AirDropPoints.AirdropPoint1.CFrame + Vector3.new(math.random(-200,200), 150, math.random(-200,200))
CargoClone.Root.CFrame = Randomposition

Thank you for this solution! I can now continue my plane/airdrop system

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.