|
| 20 May 2013 09:24 AM |
I put this in the command bar to make the model CFrame into other bricks but instead it makes all the bricks go in different places...
for i,v in pairs(game.Workspace.Island:GetChildren()) do v.CFrame = CFrame.new(v.Position.X,v.Position.Y - 1,v.Position.Z) end |
|
|
| Report Abuse |
|
| |
MrChubbs
|
  |
| Joined: 14 Oct 2010 |
| Total Posts: 4969 |
|
|
| 20 May 2013 09:44 AM |
for _,v in pairs(game.Workspace.Island:GetChildren()) do v.CFrame = v.CFrame - Vector3.new(0,1,0) end |
|
|
| Report Abuse |
|