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

Is it possible to weld a part onto someone without killing them?

Asked by
LawlR 182
6 years ago

Just wondering, don't want to start doing it then find out it's not possible.

1 answer

Log in to vote
0
Answered by
Amiaa16 3227 Moderation Voter Community Moderator
6 years ago

Yes, it is possible. Check out the wiki pages for Weld instance and Welding

local function WeldParts(p1, p2)
    local weld = Instance.new("Weld", p1)
    weld.Part0 = p1
    weld.Part1 = p2
    weld.C0 = CFrame.new(0,0,0)
    weld.C1 = p2.CFrame:toObjectSpace(p1.CFrame)
end
Ad

Answer this question