How to rotate a model through a script?

To rotate the part, I can use:
Part.Rotation = Vector3.new(90, 90, 90)

But I can’t use Rotation to rotate the Model, and I haven’t found any other ways either. How can I do this?
I understand that the question is very simple and stupid, but I will be extremely grateful for the answer.

use the Model:PivotTo() method

model:PivotTo(CFrame.new(model:GetPivot().Position) * CFrame.Angles(math.rad(90),math.rad(90),math.rad(90)))
2 Likes

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