Random Numbers Bug

Hey Devs,

found a bug with the Random Numbers if goes to Negative wont work.

I don’t know if is a bug or just how Random works in js, if you need negative numbers you can use RandomInRange

random(#) creates a number from 0 to #

The documentation is a bit lacking. The Javascript description is more detailed.

As said, you can use randomInRange() or random() * - 1

1 Like