I created a camera for a GameObject, but what’s the checkbox do?
It determines whether the component is enabled or not. It refers to the .enabled property that all Behaviour derived components inherit: Unity - Scripting API: Behaviour.enabled
Disabled behaviours don’t get updated. In the case of a camera, it doesn’t render.
