no error.. when I change the numbers the model is in the same place when I run game
1 | local model = game.Workspace.ManaStone |
2 | model.PrimaryPart = model.Union |
3 | model:MoveTo(Vector 3. new(model.PrimaryPart.Position + Vector 3. new( 20 , - 6.6 , 4 ))) |
Using Vector Addition inside a Vector3 doesn't work out too well, most of the time it just returns (0,0,0);
Rather just remove the constructor:
1 | local model = game.Workspace.ManaStone |
2 | model.PrimaryPart = model.Union |
3 | model:MoveTo(model.PrimaryPart.Position + Vector 3. new( 20 , - 6.6 , 4 )) |