#コード
CountDownTXTオブジェクトのCountDownスクリプトのCountメソッドを使いたい時
GameObject CountDownTxt;
void Start () {
CountDownTxt = GameObject.Find("CountDownTXT");
}
void Update () {
CountDownTxt.GetComponent<CountDown>().Count();
}
他にも使いまわしたいなら
CountDown cd = CountDownTxt.GetComponent<CountDown>();
cd.Count();
こんなんとかね