using UnityEngine; public class HighSpeedTrainPassForward : MonoBehaviour // this script isn't being used anymore, its stupid { public Transform train; Transform forward; void FixedUpdate() { forward = GetComponent(); // this is terrible dont do it this way forward.position = new Vector3(2, 0, 0); } }