When I use SetPrimaryPartCFrame it rotates my model and it faces the left instead of the front even though I only put a position in my CFrame.new.
jojo=script.Parent.Parent --model function apply() pos=script.Parent.Value --vector3 jojo:SetPrimaryPartCFrame(CFrame.new(pos)) end script.Parent.Changed:Connect(apply)
How do I set the position without changing the orientation or how do I set the orientation?
The MoveTo object function is better in terms of moving without orientation changes. Since you are working with CFrame, it will require you to change to Vector3 for MoveTo.