1 | while true do |
2 | print (math.random(. 1 , 1 )) |
3 | wait( 1 ) |
4 | end |
This script is kinda broken. It is supposed to choose a random number from .1 to 1, but it seems as if Roblox isn't capable of doing that as it only can choose 0 and 1. Someone help with this issue? Is it even fixable?
Yeah, you can't choose a number from .1 to 10 by using math.random
. To fix this, all you got to do is use a little bit of basic math division.
The code below chooses a random number from 1 to 10 then divide it by 10 to get it to the decimal you wanted:
1 | while true do |
2 | print (math.random( 1 , 10 ) / 10 ) |
3 | wait( 1 ) |
4 | end |