roblox npc respawn script --Respawn Script by 1MinuteRobloxTutorials-- local Copy = script.Parent:Clone() local NPC = script.Parent local Humanoid for i, v in pairs(NPC:GetChildren()) do if v:IsA("Humanoid") then Humanoid = v end end roblox npc respawn script How to get it? roblox npc respawn script if Humanoid then Humanoid.Died:Connect(function() wait(1) Copy.Parent = NPC.Parent Copy:MakeJoints() NPC:Destroy() end) else warn("Cannot find Humanoid in Respawn Script") end roblox npc respawn script How to get it? roblox npc respawn script roblox npc respawn script