|
| 18 Nov 2015 02:10 PM |
How would I move a Brick named Part with Cframes?
I want it to move from 8,8,8 to 10,8,8 |
|
|
| Report Abuse |
|
|
rayk999
|
  |
| Joined: 18 Feb 2011 |
| Total Posts: 4705 |
|
|
| 18 Nov 2015 02:11 PM |
| part.CFrame = CFrame.new(10,8,8) |
|
|
| Report Abuse |
|
|
|
| 18 Nov 2015 02:22 PM |
Heres what I made:
wait(3) game.Workspace.Part.CFrame = CFrame.new(-6.2, 0.5, -11.6) wait(0.5) game.Workspace.Part.CFrame = CFrame.new(-6.2, 0.5, -21.6)
How would I make the part move with motion, not teleportation. |
|
|
| Report Abuse |
|
|
62GB
|
  |
| Joined: 03 Oct 2011 |
| Total Posts: 4157 |
|
|
| 18 Nov 2015 02:23 PM |
for i = 1,2 do script.Parent.CFrame = script.Parent.CFrame + Vector3.new(1,0,0) wait() end |
|
|
| Report Abuse |
|
|
| |
|