I noticed the Random() method and the wait() method. And I wanna know if it is possible if random can go into wait()
Example
1 | wait(random) |
Will it wait a random number?
Yeah, math.random() is a nice function for what you are trying to do. You can say math.random() to generate a completely random number, or you can specify the range in which your random number can be. For example, you could say math.random(1, 100), this will return a random number somewhere between 1 and 100. The same applies while using wait() so if you want it to wait a random number of seconds between 5-30, you could say
1 | wait(math.random( 5 , 30 )) |
1 | wait(math.random( 1 , 60 )) -- This wait between 1 and 60 seconds |