it should respawn a dummy
the script is located in a rig that is located in a folder that is located in server storage
function respawn()
dummy = script.Parent:Clone()
dummy.Parent = workspace
print("spawned")
end
function despawn()
print("despawned")
if dummy.Humanoid.Health >1 then
dummy:Destroy(1)
wait(10)
respawn()
end
end
while true do
wait(0.1)
if dummy then
despawn()
else
respawn()
end
end
** You are now Level 2! **