Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Tool cannot be picked up after being welded?

Asked by 4 years ago
Edited 4 years ago
local Cup = game.Workspace:WaitForChild('Cup')
    local Part1 = Cup.Main

for i,v in pairs(Cup:GetChildren()) do
    if v:IsA('Part') then
        local Weld = Instance.new('Weld',Part1)
        Weld.C0 = Part1.CFrame:inverse() * v.CFrame
        Weld.Part0 = Part1
        Weld.Part1 = v
    end
end

I was making a weld in my tool, but came across a problem; after I had welded it, I couldn't pick it up. Is there a resolution for this? Why is this happening?

0
Never-mind, sorry, I just forgot to put in a handle; just asking, if I'm making a cup for a cafe, is it necessary for a handle? ISkyLordDoge 37 — 4y
0
Yes, it's still necessary. Gameplay28 139 — 4y

Answer this question