Start function dont work

My Start function don’t work. Is it because it is inside Serializable class?

[System.Serializable]
public class Act1_1HomeAwake
{
    void Start() { Debug.Log("1"); }
}

Hello,

You class has to extend the MonoBehaviour class.

regards