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

How do I weld a tool to a players left hand?

Asked by 4 years ago

It might be a dumb question, just wanting to know for now and furture reference, I have looked everywhere and couldn't find a straight answer.

1 answer

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

This is in essence how you would do it. Of course you still have to position and rotate the weld to your liking.

function weldToRightHand(player, tool)
    local weld = Instance.new("Weld")
    weld.Parent = player.Character.LeftHand
    weld.Part0 = tool.Handle
    weld.Part1 = player.Character.LeftHand
end
0
Thank you very much. BabyHades_2 40 — 4y
Ad

Answer this question