|
I'm trying to move an ENTIRE model,, but who do i use :MoveTo?
why can't we just use a CFrame.new for Models? |
|
TheKgroupJoin Date: 2008-08-28 Post Count: 362 |
You can, you can do
(directory to model):(CFrame.new(0,0,0)
ngroup stole my cookie |
|
|
CFrame is a property of BasePart, of which Model is not. To use MoveTo:
workspace.Model:MoveTo(Vector3.new(1,2,3))
as an example. |
|
CosmerthJoin Date: 2016-10-22 Post Count: 87 |
^^^^^ Yeah, that is the most simple way. |
|
|
so I'm doing what you said, and when i add a wait into it so it delays it it gets underlined. any idea why?
|
|
1fmJoin Date: 2014-06-03 Post Count: 1 |
show code |
|
|
hmm, none of those seem to be working. Can you maybe give a more In-Deph answer, I've been working on trying to get it for 2 hours now. |
|
|
Model:MoveTo(Vector3.new(x,y,z))
NULL > NIL |
|
Telasim0Join Date: 2011-06-10 Post Count: 2263 |
omg I had the same problem yesterday
game.Workspace.model.MoveTo:(Vector3.new(insert location here))
Make sure to name "model" to the model name you're trying to move. |
|
Telasim0Join Date: 2011-06-10 Post Count: 2263 |
game.Workspace.model:MoveTo(Vector3.new(insert location here))
sorry about that, ignore my other code. |
|