void DetectMouseClick()
    {
        //The click happens when I release the left mouse buttons
        if (Input.GetMouseButtonUp(0))
        {
            //Logic that should happen when I click.

            if (currentInteractableCube)
            {
                currentInteractableCube.InteractWithCube();
            }
        }
    }