also 345
I mean you should make it spead up as time goes by using this script
public float SlowSpeed;
public float Speed
void Update(){
Speed += Time.deltaTime*SlowSpeed;
Time.timeScale = Speed;
};
Thanks for the suggestion