upbeat0
|
  |
| Joined: 21 Dec 2010 |
| Total Posts: 235 |
|
|
| 19 Dec 2013 05:56 PM |
I'm making a script that moves the brick over and over again but i keep getting an error and i don't know how to fix it. Please help!
while true do B= game.Workspace.Ball
B.CFrame.Vector3.new + (0,0,1) wait(1) B.CFrame.Vector3.new + (0,0,1) wait(1) B.CFrame.Vector3.new + (0,0,1) wait(1) B.CFrame.Vector3.new + (0,0,1) wait(1)
end |
|
|
| Report Abuse |
|
lolb3
|
  |
| Joined: 16 Jan 2010 |
| Total Posts: 2268 |
|
|
| 19 Dec 2013 05:58 PM |
its a while loop, just do it once and do a wait... define b out of ttheloop no =s in there
B= game.Workspace.Ball while true do B.CFrame = B.CFrame + CFrame.new(0,0,1) wait(1) end |
|
|
| Report Abuse |
|
upbeat0
|
  |
| Joined: 21 Dec 2010 |
| Total Posts: 235 |
|
| |