Question regarding tool positioning

How would I be able to move an entire tool from one Vector3 to another using scripts?

Can you give a better explanation on what you’re actually looking for?

I’m trying to move a tool to the position of a part. The tool contains an object named “Handle” and other parts welded to the handle. if I move the handle, it just moves the handle, and not the welded parts. i checked to make sure all parts were unanchored.

Have you checked properly if the parts are welded correctly?

yes, they’re all properly welded.

Are you moving the part using CFrame (such as :PivotTo(here), part.CFrame = here, or model:SetPrimaryPartCFrame(here))? Setting the .Position will only move the part and not all of its welds.

1 Like

nope. It’s a tool, not a model, so I wouldnt be able to do that regardless.

You can use part:PivotTo(here) and part.CFrame = here for BaseParts (aka your Handle).

1 Like

thanks a lot! helped a ton. have a good day/night! :smile: