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

I'm really confused on how I can be able to weld another tool to the left hand?

Asked by
Choobu 59
5 years ago
JointType = JointType or "Weld"
    local NewWeld = Instance.new(JointType)
    NewWeld.Part0  = script.Parent.Handle
    NewWeld.Part1  = script.Parent.Tohka1stSword.MeshPart1
    NewWeld.C0     = CFrame.new();
    NewWeld.C1     = script.Parent.Tohka1stSword.MeshPart1.CFrame:toObjectSpace(script.Parent.Handle.CFrame);
    NewWeld.Parent = script.Parent.Handle
    return NewWeld
0
What I mean is by adding another tool in the same script kinda like a dual wield feature Choobu 59 — 5y
0
can't you just weld it to the left arm? SteamG00B 1633 — 5y
0
Yeah you can just weld it to the LeftHand. TheOnlySmarts 233 — 5y
0
But you'll have to position it. TheOnlySmarts 233 — 5y

Answer this question