Im trying to move a model by :PivotTo(Part.CFrame) but its not working. I have tried other ways like Model.PrimaryPart.Position Model:SetPrimaryPartCFrame() But none of them are working.
local Model = script:FindFirstChild("Model")
local ClonedModel = Model:Clone()
ClonedModel.Parent = game.Workspace
ClonedModel:PivotTo(game.Workspace.Baseplate:GetPivot())
PivotTo is better than MoveTo.
Also, you should not do local model = clone:Clone().Parent = script.Parent.
They have stated that they already corrected it, and also MoveTo is better in cases where you want a fixed rotation and the model to be on top of everything else.