// Start is called before the first frame update
    void Start()
    {
        _audioSource = GetComponent <AudioSource>();

        _objectSpawner.InitialSpawnRoad();
        StartCoroutine(SpawnCars());
        StartCoroutine(SpawnStar());
    }