Hey, I’m trying to prevent the player from using a toggle when they are dead. To do this, I am checking when their health is 0, they can’t use the toggle. However, after they respawn they are unable to use the toggle.
This is my code:
UIS.InputBegan:Connect(function(input, typing)
if typing then return end
if input.KeyCode == Enum.KeyCode.Q and character.Humanoid.Health ~= 0 then
if isToggled then
isToggled = false
else
isToggled = true
end
else
print(character.Humanoid:GetState())
end
print(isToggled)
end)
I’;m not sure if this is a client-server bug or if there is a more efficient way to check if the player is dead, any feedback would be great.
My guess is that character was defined somewhere above this function, then the character died. So, now the character no longer exists for this function.
When a character dies, you need to make sure this script redefines the character variable to the new character.
Also just an extra tip (you can ignore this if you want or think its confusing):
Instead of making an if statement you can just do IsToggled = not IsToggled, that way if its false it turns true and if its true it turns false without needing all those lines.