Hello JD Harris ,
The issue is that you're using public inside the Update method. You can't do that in C#.
You should move "public float horizontalInput" and "public float forwardInput" to the same level as "public float turnspeed" (Class level).
Variables declared inside methods can't have public/private.
Hope this helps!