my script is getting this error "Assets\PlayerMovement.cs(65,18): error CS0131: The left-hand side of an assignment must be a variable, property or indexer" can I get some help please
What do you have on line 65 of the PlayerMovement file?
else if(Input.GetKeyDown(KeyCode.UpArrow) && extraJumps == 0 && isGrounded = true)
It should be isGrounded == true
= is assignment, == is comparison
;)
thank you