Using tween with pivots

I have a model which im trying to move with tweens.

I did something like this:

 local tween = TweenService:Create(clientStructure, tweenInfo, tweenGoal)
                tween: Play()

but it gives the error

TweenService:Create no property named ‘CFrame’ for object . . . (the model im moving)

It also gave me the same error when i was trying to move the model without the tween and it worked using :PivotTo, is there any way to use pivotto with tweens?

Is your clientStructure a Model? If it is, then it’s outputting this error since Models have no CFrame property. You will have to set a PrimaryPart within the model and weld all the other parts in the model via WeldConstraint.

They will follow the PrimaryPart if it’s tweened.

is there any way to use pivotto with tweens?

I don’t think you can :frowning_face:.