I have everything correctly, and I did everything I learned and saw in the video. But then error CS0103 keeps coming up, and it’s on line 20… !!! Help please!!!
Line 20 should read:
rb.AddForce(movement);
Also, next time please copy the whole error and not just the number, it can sometimes provide more context. Plus not everyone has the error numbers memorized.
The issue is you’re trying to assign to a Method rather then call it your line 20 should look more like this:
rb.AddForce(movement);
which is known as a method call. (Your chosen IDE should distinguish between a variable, property and method through different symbols in its autocomplete functionality, and if in doubt methods are usually ‘doing’ phrases e.g AddForce, SetFloat, GetComponent).