using UnityEngine; public class MenuRotateScript : MonoBehaviour { public float MoveSpd; void Update() { transform.Rotate(Vector3.up * MoveSpd); } }