Parts from my toolbox spawn very far away

Spawning a part is a matter of setting where it goes. For example in a script:

function()
    local model = ReplicatedStorage.model:Clone()
    model.Parent = workspace
    model.PrimaryPart:MoveTo(Vector3.New(1, 1, 1) --your pos here
    


end

You can set a PrimaryPart in a model by opening it up and selecting a part.

Here is a good reference link: Is there a way to change models position

Also just a suggestion don’t stick too much to toolbox models, stuff like that is much harder due to you not knowing the makeup as well.

A matter of moving a toolbox model is pretty simple, if you don’t know how to do it please look it up.

Hope this helps!

If this does not help please be more specific; show your code and some photos.

1 Like