Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Can someone help me with my script?

Asked by
red106 0
10 years ago

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


2 answers

Log in to vote
0
Answered by 10 years ago

The wait time shouldn't affect the code you have there. What's in the output?

Ad
Log in to vote
0
Answered by 10 years ago

Put

if script.Parent.Humanoid.Health<1 then

Over the wait(1)

0
It makes my game freeze when I start playing :/ red106 0 — 10y
0
Your script must have error then, I can't see one tho. Rainwhal 0 — 10y

Answer this question