Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How would i make a part rotate constantly?

Asked by 6 years ago
Edited 6 years ago
1While wait() do
2script.Parent.CFrame = CFrame.fromEulerAnglesXYZ(1,0,0)
3end

1 answer

Log in to vote
1
Answered by 6 years ago
Edited 6 years ago
1While wait() do
2    script.Parent.CFrame = script.Parent.CFrame *CFrame.fromEulerAnglesXYZ(1,0,0)
3end
Ad

Answer this question