So I have:
1 | local modelCFrame = model:GetModelCFrame(); |
2 | print (modelCFrame); |
3 | model:TranslateBy(Vector 3. new(modelinfo [ 3 ] -modelCFrame.p)); |
4 | print (model:GetModelCFrame()); |
which moves the model to modelinfo[3] (Vector3.new(0.07, 0.61, -22.29))
however I did prints around them and they both return the position as 0,0,0?
Why is this not moving the model?
If you just want to move the whole model just do
1 | local Model = Workspace.Model |
2 |
3 | Model:MoveTo(Vector 3. new( 0.07 , 0.61 , - 22.29 )) |