Hi, I'm a relatively beginner game developer and the other day I decided to switch from using Unity for 2D games to using Godot for 2D games. So far I've been experiencing that frustration that comes with using a new game engine, but I know that it will eventually get better. (albeit with lots of broken keyboards.) I just started a day ago, and so far I've grasped a primitive understanding of GDscript with the help of Brackeys and ChatGPT.
So the prototype/starter game I'm making is basically a platformer where you control a rolling ball. It was incredibly frustrating already to get the system working, because pretty much everything I came across to make the player rotate with its acceleration didn't work, until i switched to using Rigidbody2D instead of CharacterBody2D and found a suitable tutorial which was incredibly simple.
However, when I continued to follow along with the tutorial it told me to have my Camera2D attached to my Player node. And when I ran the game, everything worked--except for the camera, because it rotates along with the player. I have tried multiple different approaches to fixing this issue, and I wish there was an option to lock the camera's rotation because nothing seems to work. So in conclusion, I would really appreciate some help on getting the camera to not rotate with the player.
Here is the link to the tutorial I used if you need it:

My proposal is to not have the camera as child of the ball (since it rotates), instead have it at the top level and in the code in every frame you manually change its position to match the player's.