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
|