Random.Range 関数でランダム値を取得しようとすると以下のようなエラーが出る場合があります。
error CS0104: 'Random' is an ambiguous reference between 'UnityEngine.Random' and 'System.Random'
error CS0104: 'Random' is an ambiguous reference between 'Unity.Mathematics.Random' and 'UnityEngine.Random'
これは複数の名前空間に Random クラスが定義されているのでコンフリクトが起きているせいです。
以下のようなかんじでC#スクリプトの先頭にどこのRandomを使うか明記すればエラーは消えます。
using Random = UnityEngine.Random;