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.