Third Person camera controls?

Hi everybody,
I have made my own model from blender and imported it to my game. My camera follows the character and everything is working except the controls. I can’t fully turn around and the D key makes the character go forwards. What I am aiming for:
W key is forwards
A key is turn left
S key is backwards
D key is turn right
I’m new to unity so I don’t know how I would go about this.
Thanks! :slight_smile:

Download the “Standard Assets” from Start Your Creative Projects and Download the Unity Hub | Unity (click the ‘Additional Downloads’ under the date) → install while Unity is closed → Open your project → Assets → Import Package → Characters → unselect what you don’t need/ want (prob just leave ThirdPersonCharacter selected) → see how they did it and either make your own or edit that one to do what you want.

A/D will probably be strafe though.

my best guess is you’re using Vector3.forward (which uses the world forward) you need to use transform.forward and transform.right.

Not trying to be rude, but you must watch Unity Learn Videos, go through the basics and proceed after you’re sure you understood the concept.

I will try the ‘standard assets’ and I will also watch the learning videos. Thanks for your replies!