I need to respawn/revive a dummy but don't know-how. Could someone push me in the right direction?
repeat if game.Workspace.Dummy1.Humanoid.Health < 100 then game.Workspace.Dummy1.Humanoid.Health += 100 end wait(0.15) until true == false
clone it before it dies, or when it respawns/spawns.
clone = script.Parent:Clone()
then when it dies respawn it and wait for a period of time and eventually delete the dead one if you want.
script.Parent.Humanoid.Died:Connect(function() wait(10) clone.Parent = workspace wait(20) script.Parent:Destroy() end)