random.range not working unity code example
Example 1: random.range unity not working
//Do u have using System too? If so u have to specify w
UnityEngine.Random.Range(1, 10);
Example 2: unity random range int not working
float rand = UnityEngine.Random.Range(0, 4); Debug.Log(rand);