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()
.
1 | while wait() do |
2 | script.Parent.CFrame = script.Parent.CFrame * CFrame.fromEulerAnglesXYZ( 0 , 00.1 , 0 ) |
3 | end |
If you want it to rotate on all axises, do this:
1 | while wait() do |
2 | script.Parent.CFrame = script.Parent.CFrame * CFrame.fromEulerAnglesXYZ( 0 , 00.1 , 0 ) |
3 | end |
It's useful for things like a nuclear core.