ok this is a respawn script for a zombie i need it to spawn them at specified intervals of time
name="Humanoid"
Robo=script.Parent:clone()
robot=robo:clone()
robot.Parent=script.Parent.Parent
robot:makeJoints()
script.Parent:remove()
end
end
could i posibly use a loop?
so some thing like & idk if this would even work but
name="Humanoid"
Robo=script.Parent:clone()
local i =1
while i > 0
wait(10)
robot=robo:clone()
robot.Parent=script.Parent.Parent
robot:makeJoints()
i = i + 1
end
end
|