Hello
I've been trying to figure out how to move a model using scripts. I don't want to move a model's parts one by one as that would consume a lot of time. If you do know the answer, please help!
1 | game.workspace.GROUP.Position = Vector 3. new( 12413412 ) --group is the name of the model |
An example of what I've been trying to do ^^^
I don't know where you got this code, but please abandon it.
You can use a function known as :MoveTo(). This will set the PrimaryPart
's position to any given Vector3.
1 | workspace.GROUP:MoveTo(Vector 3. new( 0 , 0 , 0 )) |