Well I made this script but I want it to wait a few seconds, but when I put it for more than a second it doesn't work. Can someone help me?
name="Humanoid" robo=script.Parent:clone() while true do wait(1) if script.Parent.Humanoid.Health<1 then robot=robo:clone() robot.Parent=script.Parent.Parent robot:makeJoints() script.Parent:remove() end end
The wait time shouldn't affect the code you have there. What's in the output?