//Jimmy Vegas Unity Tutorial //This script will rotate your gem using System.Collections; using System.Collections.Generic; using UnityEngine; public class GemRotate : MonoBehaviour { public int RotateSpeed; void Update () { transform.Rotate(0, RotateSpeed, 0, Space.World); } }