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

my respawn script only working SOMETIMES, and other times its just broken... why?

Asked by
0msh 333 Moderation Voter
6 years ago

so my respawn script only works sometimes, and some times its completely broken. When it's broken, the "Human" (I changed the name to Human instead of Humanoid) make joints, the torso will float in air with head on top, and other parts just fall into nowhere... I only have: -Head, LArm,RArm,LLeg,RLeg,Torso -Humanoid -a respawn script and another script that doesn't affect the respawning of the NPC at all inside of the NPC

my respawn script:

npc = script.Parent:Clone()

function Died()
    wait(10)
    npc.Parent = script.Parent.Parent
    npc:MakeJoints()
    npc.Human.Health = npc.Human.MaxHealth
    script.Parent:Remove()
end

script.Parent.Human.Died:connect(Died)

0
I wish I could help you, but sorry, I have no idea what is the issue with your script. Perhaps try to make the joints before you move it into the workspace? RiskoZoSlovenska 378 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago

try remove the script.parent:remove() or make this spawn using teams

0
script.Parent:Remove() is already in there 0msh 333 — 6y
0
so remove it darkzerobits 92 — 6y
Ad

Answer this question