Hey,
I just wrote a simple C# script to make a gameObject rotate ‘left’ using transform.rotate, and I honestly don’t know how to increase the speed of this movement. The script is below
void Update () {
transform.Rotate (Vector3.left * Time.deltaTime, Space.World);
}
}