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!
game.workspace.GROUP.Position = Vector3.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.
workspace.GROUP:MoveTo(Vector3.new(0, 0, 0))