Attach Object To Left Arm

I want to attach a bullet to the player’s left arm like this:
image

So i looks like the player’s holding the bullet.
But i do not know how, can anyone give me a code example?

1 Like

image

parent the bullet to the charactesr arm

image

Get moon animator plugin

image

image

image

image

image

image

SET WELD PART0 TO NIL
image

PARENT WELD TO BULLET

image

image

DONT WELD THE BULLET TO THE HANDLE

image

INSIDE SCRIPT!


local plr = script.Parent.Parent.Parent 

local char = plr.Character or plr.CharacterAdded:Wait()


local tool = script.Parent

tool.Equipped:Connect(function()
	tool.Bullet.Weld.Part0 = char["Left Arm"]
	
end)

tool.Unequipped:Connect(function()
	tool.Bullet.Weld.Part0 = nil

end)

oopsies i didnt realise it was eft arm BUT IT STILL WORKS!!
image