of     1   

Fatman300
#40250638Monday, January 03, 2011 4:36 AM GMT

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
Fatman300
#40251198Monday, January 03, 2011 4:49 AM GMT

Bump PS if it isnt obvious im a complete novice at scripting
Fatman300
#40303315Tuesday, January 04, 2011 1:15 AM GMT

B BU BUM BUMP BUM BU B
BEART12
#40303714Tuesday, January 04, 2011 1:19 AM GMT

wait(math.random(2,40))waits randomly
Fatman300
#40303910Tuesday, January 04, 2011 1:21 AM GMT

no what i need is for it to have a set waiting time but idk how to make it so it spawns them at a set waiting time
Fatman300
#40304081Tuesday, January 04, 2011 1:23 AM GMT

would this work name="Humanoid" Robo=script.Parent:clone() while true do robot=robo:clone() robot.Parent=script.Parent.Parent robot:makeJoints() wait(10) repeat end end
BEART12
#40305123Tuesday, January 04, 2011 1:36 AM GMT

What.. RegenTime = 15 stuff Wait(RegenTime) End

    of     1