How to weld tool to character hand simular to the tool grip

I need a help with welding tool to character hand simular to the tool grip. Any ideas how can i do that?

you can try this

local toolWeld = Instance.new("Motor6D")
toolWeld.Part0 = character.RightHand
toolWeld.Part1 = tool.Handle
toolWeld.Parent = tool.Handle

image
on player

image
on other character (npc)

not the thing i wanna do

cant you just call humanoid:EquipTool(tool) on the npc humanoid?

1 Like

it’s from the client, it’s not working.

are you able to export the tool & npc as rbxm? i’d like to try something in studio

1 Like

tool.rbxm (13.5 KB)
char.rbxm (72.5 KB)

this works for me

local toolClone = game.ReplicatedStorage.Iron.Handle:Clone() -- change to handle path
	
local weldConstraint = Instance.new("WeldConstraint")
weldConstraint.Part0 = workspace.Character.RightHand
weldConstraint.Part1 = toolClone
	
weldConstraint.Parent = toolClone
toolClone.Parent = workspace.Character

RobloxStudioBeta_SGXQlSuCaV

1 Like

That worked, tysm! Have a good day/night

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.