|
| 29 Sep 2014 06:26 PM |
When the rotation gets to -180,90,-180 the block doesnt rotate anymore. How would I make this script so it rotates infinitely?
while true do wait(0.001) script.Parent.Rotation = script.Parent.Rotation + Vector3.new(0,1,0)
end |
|
|
| Report Abuse |
|
|
wazap
|
  |
| Joined: 29 Jun 2007 |
| Total Posts: 23234 |
|
|
| 29 Sep 2014 06:28 PM |
while true do wait(0.001) script.Parent.CFrame = script.Parent.CFrame*CFrame.Angles(0, math.rad(1), 0)
end |
|
|
| Report Abuse |
|
|
|
| 29 Sep 2014 07:14 PM |
| You could also try out BodyRotationalVelocity, if you're looking for that sorta thing. |
|
|
| Report Abuse |
|
|