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

How can I make a tool left handed instead of right handed?

Asked by
Galicate 106
6 years ago
Edited 6 years ago

I tried using a weld so that when the player equips the tool it welds it to the left hand, but what happened was that the left hand was moved and not the tool.

function Equipped()
    local Weld1 = Instance.new("Weld")
    Weld1.Parent = game.Players.LocalPlayer.Character.LeftHand
    Weld1.Part0 = game.Players.LocalPlayer.Character.LeftHand
    Weld1.Part1 = script.Parent.Handle
end

script.Parent.Equipped:connect(Equipped)
0
I would just make an animation and a script. kittonlover101 201 — 6y
0
Use :Connect not :connect. User#19524 175 — 6y
0
whats the difference? Galicate 106 — 6y

Answer this question