Lua math.random not working

You need to run math.randomseed() once before using math.random(), like this:

math.randomseed(os.time())

One possible problem is that the first number may not be so “randomized” in some platforms. So a better solution is to pop some random number before using them for real:

math.randomseed(os.time())
math.random(); math.random(); math.random()

Reference: Lua Math Library

Leave a Comment