I’m using Choose Random custom behavior and it’s not working.
I also try it with “” in each number but it wasn’t working as well.
I’m using Choose Random custom behavior and it’s not working.
The numbers need to be contained within double quotes, Choose::RandomNumber(
"-10,0,10
")
For what it’s worth, you can do the same with the built-in:
RandomWithStep(-10, 10, 10)
That chooses a random number between -10 and 10, but in increments of 10 (so -10, 0, or 10).