Answered by
7 years ago Edited 7 years ago
Unless I am unaware of something built into the plugin I would do it with welds
You can read of welds here http://wiki.roblox.com/index.php?title=Weld
But basically you just need to weld together the handle of the weapon to the NPC's hand/arm (depending on R6 or R15)
1 | local hand = workspace.anNPC.RightHand |
2 | local handle = workspace.aWeapon.Handle |
4 | local w = Instance.new( "Weld" ,hand) |
7 | w.C 0 = hand.CFrame:toObjectSpace(handle.CFrame) |
Please make sure that the weapon is unanchored or it will not work