Model Not Rotating

orientation stops at 180 i think, you will have to use cframe (ill provide a example in a sec)

also use task.wait(), wait() should be deprecated, but its so widely used it isn’t, task.wait() supersedes it because it is more optimized

while task.wait() do
    script.Parent.CFrame *= CFrame.fromEulerAnglesXYZ(0.1,0,0)
end

edit: wait IS deprecated, do not use it

1 Like