local handle = script.Parent.Handle
for _, part in pairs(script.Parent:GetChildren()) do
if part:IsA("BasePart") and part.Name ~= "Handle" then
part.Anchored = true
local weld = Instance.new("Weld", handle)
weld.Part0 = handle
weld.Part1 = part
weld.C0 = handle.CFrame
weld.C1 = part.CFrame:toObjectSpace(handle.CFrame)
part.Anchored = false
end
end
The parts all weld to the handle correctly, but when it's in a model it makes the selection gigantic. |