Is it possible to make a part spin infinetly with tween service?
I know this isn't TweenService, but you have to use CFrame.fromEulerAnglesXYZ()
.
while wait() do script.Parent.CFrame = script.Parent.CFrame * CFrame.fromEulerAnglesXYZ(0, 00.1, 0) end
If you want it to rotate on all axises, do this:
while wait() do script.Parent.CFrame = script.Parent.CFrame * CFrame.fromEulerAnglesXYZ(0, 00.1, 0) end
It's useful for things like a nuclear core.