Temporary R15 Ragdoll

First post sorry for bad formatting.
I was wondering how would I make a temporary r15 ragdoll.

	Hitbox.Touched:Connect(function(Hit)
		if Hit:IsA("Part") or Hit:IsA("MeshPart") then
			if Hit.Parent ~= Character then
				local EHumanoid = Hit.Parent:FindFirstChild("Humanoid")
				local EHumRP = Hit.Parent:FindFirstChild("HumanoidRootPart")
				
				if EHumanoid and EHumRP then
					Hitbox:Destroy()
					
					EHumanoid:TakeDamage(damage)
					

					local character = Hit.Parent

Here is the part of my script that I want to start the ragdoll in.

Is this what you’re looking for

2 Likes