of     1   

deerdharok
#228379414Sunday, December 03, 2017 2:39 PM GMT

can someone tell me why the part names "trunk" is not being destroyed after the humanoid health reached 0?? the output window doesn't mark any errors local health = script.Parent.Humanoid.Health while true do if health<0 then script.Parent.Trunk:Destroy() break; end wait() end
hollowlucas
#228379458Sunday, December 03, 2017 2:40 PM GMT

? Is the health going down to 0?
deerdharok
#228379506Sunday, December 03, 2017 2:41 PM GMT

i reaches 0 after a few wacks, but it doesn't do anything to the trunk
hollowlucas
#228379512Sunday, December 03, 2017 2:42 PM GMT

I know why! while wait() do local health = script.Parent.Humanoid.Health if health<0 then script.Parent.Trunk:Destroy() end end If the health is above the while loop, it will get the health at that time?
deerdharok
#228379582Sunday, December 03, 2017 2:43 PM GMT

Thanks so much! lol im a newbie. it works now
mattscy
#228379802Sunday, December 03, 2017 2:49 PM GMT

you should probably do this with the HealthChanged or Died events for efficiency too
hollowlucas
#228379848Sunday, December 03, 2017 2:50 PM GMT

Meh! Who cares about efficiency! I wanna play the laggy game more than the glitchy one lmao
mattscy
#228379922Sunday, December 03, 2017 2:52 PM GMT

why would events cause glitches if they are youre doing something wrong

    of     1