of     1   

swimmaster07
#183604796Sunday, February 14, 2016 7:03 PM GMT

I know there is a humanoid died event, but what would I do if I wanted to put that in an if statement. Would I do for example... local player = game.Players.LocalPlayer local char = player.Character if char.Humanoid.Died then print("hi") end or if not, what can I do if I want to do something like this.
Aethex
#183604978Sunday, February 14, 2016 7:05 PM GMT

What? So you just want to check if the player's character is dead? Just check if the Health property of their Humanoid is zero or less.
UFAIL2
#183605121Sunday, February 14, 2016 7:07 PM GMT

local dead = false char.Humanoid.Died:connect(function() dead = true end) wait(3) if dead then print("hi") end
Aethex
#183605431Sunday, February 14, 2016 7:11 PM GMT

@UFAIL2 that's pointless, the dead value won't reassign when they become alive and the value will always stay at "dead" regardless of what happens if you're going to do something like that, it'd be 1000x easier to just put what you need inside of the died event
swimmaster07
#183609330Sunday, February 14, 2016 8:02 PM GMT

ya so i have a table of all the players and what i want to do is remove the player from the table if they die, so is the best way to do this just by checking if the player's health is at 0?
ElectoStriking
#183610103Sunday, February 14, 2016 8:13 PM GMT

char.Humanoid.Died:Connect(function() --code end) char.Humanoid.Changed:Connect(function() if char.Humanoid.Health == 0 then --code end end) ona those two should work #Strikin'
Aethex
#183623712Sunday, February 14, 2016 11:31 PM GMT

@swimmaster07 just use the Died event and remove them from the table then: --assuming char is defined at the Character char.Humanoid.Died:connect(function() for i,plr in pairs(playersAlive) do --assuming your table is named "playersAlive" if (plr.Character or plr.CharacterAdded:wait()) == char then -- Assuming the table stores the actual "Player" and not the Character or a string value of their name table.remove(playersAlive, i); end end end)
Aethex
#183623817Sunday, February 14, 2016 11:32 PM GMT

@ElectoStriking Your second example should be using .HealthChanged, not .Changed. It's also unnecessary to do that considering it would fire every time the player loses or regenerates health. Just using the Died event is fine.
swimmaster07
#183631656Monday, February 15, 2016 1:22 AM GMT

k thx

    of     1