Can't get weighted chance for table in RNG type game

Hey,

You are not using the Random object correctly.

‘’’
local max = 2147483647 – use a large integer
local seed = math.random(max)
local generator = Random.new(seed)
‘’’

1 Like