#💬 zgoatʹs Feedback

1 messages · Page 1 of 1 (latest)

echo domeBOT
quartz hill
#

how do you make them respawn

wicked verge
# quartz hill how do you make them respawn

i just made a simple script inside the model (not the best way to do it but this was just for showcase)

local Humanoid = script.Parent:FindFirstChild("Humanoid")
local Copy = script.Parent:Clone()

Humanoid.Died:Once(function()
    task.wait(5)
    Copy.Parent = workspace
    script.Parent:Destroy()
end)