I created a simple sword with multiple parts that get welded together with a weld script. When i copy and paste the sword into the npc model only the handle goes to his hand, but the rest of the sword stays behind.
How should i go about getting the npc to actually carry the sword properly? thank you.
Here is an example
01 | --[[LocalScript in tool]] -- |
02 |
03 |
04 | local player = game:GetService( "Players" ).LocalPlayer |
05 | local char = player.Character or player.CharacterAdded:Wait() |
06 | local humanoid = char:WaitForChild( "Humanoid" ) |
07 | local tool = script.Parent |
08 |
09 | if tool then |
10 | humanoid:EquipTool(tool) |
11 | end |