Hey, I am wondering if someone know about an easy way to rotate a Model. I want to rotate it using a for-loop, only a certain amount of degrees. For example like this, but not with the part, but with a whole model:
local lower = script.Parent.Lower
for i=0, 30 do
lower.CFrame = lower.CFrame * CFrame.Angles(0,-i/400,0)
wait(0.01)
end |