How to use math.randomseed()

math.randomseed()

I wonder what it is is for :face_with_raised_eyebrow:

math.randomseed() basically determines how math.random’s outputs come out. Since computers can’t generate true random numbers, they must use a seed as a sort of “pattern”, and then things such as math.random produce things that simulate a random output with that pattern.
See this post, I can’t promise i’m 100% correct: Beginner Question - What is math.RandomSeed? - #2 by LukaDev_0

2 Likes
1 Like