AceCount
|
  |
| Joined: 23 Oct 2013 |
| Total Posts: 199 |
|
|
| 31 Dec 2013 12:05 AM |
I don't know much about Cframing, Vector3s, or anything like that, so how do I make a part rotate like this:
while script.Disabled == false do wait(0.15) script.Parent.CFrame = CFrame.y = y +2 --What actually goes here? end |
|
|
| Report Abuse |
|
|
robomax11
|
  |
| Joined: 07 Jul 2011 |
| Total Posts: 6828 |
|
|
| 31 Dec 2013 12:08 AM |
while wait(.15) do -- why while disabled? if its disabled script wont run anyway script.Parent.CFrame = script.Parent.CFrame + CFrame.new(0, bleh, 0) -- bleh is y |
|
|
| Report Abuse |
|
|
Laedere
|
  |
| Joined: 17 Jun 2013 |
| Total Posts: 23601 |
|
|
| 31 Dec 2013 12:09 AM |
| script.Parent.CFrame = script.Parent.CFrame + Vector3.new(0, 2, 0) |
|
|
| Report Abuse |
|
|
AceCount
|
  |
| Joined: 23 Oct 2013 |
| Total Posts: 199 |
|
|
| 31 Dec 2013 12:16 AM |
Ah ha! Got it thanks
while true do wait(0.15) script.Parent.Rotation = script.Parent.Rotation + Vector3.new(0, 2, 0) end |
|
|
| Report Abuse |
|
|