Is there anyway to clone a sword from Lighting into an NPC? Thanks!
All you have to do is parent the tool to the NPC and it should automatically equip the tool to the NPC's arm. Also I would not recommend parenting tools to Lighting, not because it doesn't work correctly but because there is a better alternative called ReplicatedStorage
.
local tool = game.ReplicatedStorage.Tool local NPC = game.Workspace.NPC tool:Clone().Parent = NPC
Note that this only happens if the NPC has a Humanoid object and a Right Shoulder joint parented to a part of the NPC called Torso with Part0 equal to the torso and Part1 equal to the Right arm (Basically if it is a copy of a Roblox default character).
On the humanoid
use the :EquipTool(Tool)
method.