Hi this is my first time using the forum. I’m trying to generate a new Random.Range every time my function is called. I’m unsure why my code is not working and any help would be greatly appreciated!
public float priceRange;
public void UpdatePrices()
{
priceRange = new Random.Range(-150f, 300f);
}