I’m trying to get my tool on my left hand, since the animation of the tool is made on the left hand, but I can’t figure out how I would put the tool on the left hand, help is appreciated!
Simply have the actual tool handle invisible but make a script that welds the left hand item to the character’s left hand.
Here is your solution!
local LHand = -- lefthand
local leftgrip = LHand.LeftGripAttachment.WorldCFrame
local ItemHandle = -- your item handle
WeaponHandle.CFrame = leftgrip
local weld = Instance.new("Weld")
weld.Part0 = LHand
weld.Part1 = WeaponHandle
Have a good day!
You defined the variable ItemHandle
but you proceeded to call it WeaponHandle
. Was this a mistake?
I would guess so because you would need the CFrame on the left hand or else the script is basically useless.