Math.random() not working

So does it mean it wont print any number below the starting point

Like if my starting point is 100
It will only get a number above 100?

no. the first argument in NextInteger is the minimum number and the second argument is the maximum number, in this case minimum is 1 and maximum is 500.

RNG:NextInteger(1, 500)

A seed basically controls the sequence of numbers, so if you use the same seed you get the same output.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.