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
--[[LocalScript in tool]]-- local player = game:GetService("Players").LocalPlayer local char = player.Character or player.CharacterAdded:Wait() local humanoid = char:WaitForChild("Humanoid") local tool = script.Parent if tool then humanoid:EquipTool(tool) end