Xbox 360 Controller Left Stick controls

I’ve been trying so many different ways to get the left stick to work but with no luck. I’ve followed the proper way to set it up through the input manager but I’m guessing my code is the problem. I can get any other button to keybind but I guess cause I’m dealing with and axis it’s a little different.

Here’s my code.

if(Input.GetAxis("360_LeftStickX") < 0) {
	
	Debug.Log("LEFT Stick");
	
	}

http://wiki.unity3d.com/index.php/Xbox360Controller
Should help you out.