Hey there! I totally forgot how math.random worked.
Could anyone explain this to me?
I need it for a FOV changer that just changed the fov at random moments.
A math.random(min,max) is a CODE for getting a random number.
1 | print (math.random( 1 , 10 )) |
Output :
8
This CODE means to print a number that 1 to 10. Let's do another code :
1 | print ( "math.random(1,10)" ) |
Output :
math.random(1,10)
OH, WHAT'S WRONG? Aha, ignore the " " in the print!
Output :
7
etc :
1 | local number 1 = math.random( 1 , 10 ) |
2 |
3 | print ( "OMG, THE NUMBER IS " .. number 1 ) |
Output :
OMG, THE NUMBER IS 4
Ok, thanks for watching, have a nice day and happy coding :) If you have any question comment below :D
math.random() gets a random number when specified. It's inclusive. example:
1 | local r = math.random( 1 , 4 ) |
2 | print (r) |