You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? I want to know what number Random.new() can take that is not 0
What is the issue? I dont have the screenshot right now, but if you put a number too small for the Random.new() it will change the input number into 0 and say something like "can only take number from (very big negative number) to (very big positive number) and no mention of smallest number.
What solutions have you tried so far? Tried asking chatgpt, tested, wrong.
If you want to get smaller values than 1 in math.random(), then you would need to do something like this:
local Maximum = 0.5
local Rand = math.random()
local Number = Rand * Maximum
(The smallest value this way is really small. Not 100% sure on what it is precisely but I’ve confirmed that 0.0000000…00001 (100 zeroes followed by a 1) is valid)
The seeds are always rounded down to the nearest whole number (so 0, 0.1, 0.5, 0.999 would all give a seed of 0, while 1, 1.01, 1.5, 1.999 would be 1, etc.)
If this still isn’t what you are referring to, can you please elaborate further