Sorry for digging up an old thread, but I had the same question some time ago. To get a (pseudo) normal distribution you just need to sum at least 4 flat distributions. For example if you want a Gaussian-like distribution between 0 and 100 you would do something like float x = Utility.RandomFloat(0,25)+Utility.RandomFloat(0,25)+Utility.RandomFloat(0,25)+Utility.RandomFloat(0,25);