Is it possible to make a model a handle?

Trying to make this brick be in my hand but having some problems. I think mainly its because its a grouped model not a part.
image
If there is a way to fix this please help.

You can’t use a Model as the Handle of a Tool. But if you want you can weld the parts together using WeldConstraints. Or you can union them together. It depends

2 Likes

Ok, thank you for the feedback.

You cannot use a model so instead use Q-Perfection Weld. So for every part in the tool, it adds a weld to the handle. All parts other than the handle must be welded to the handle for you to be able to use multiple parts in a tool.

Here is how I would script it:

function weld(part, weldto)
local newweld = Instance.new(“Weld”)
newweld.Parent = part
newweld.Part0 = part
newweld.Part1 = weldto
end

local Handle = script.Parent.Handle
for i,v in pairs(script.Parent:GetChildren()) do
weld(v, Handle)
end