Let’s say in a game there’s items people can obtain, but those items have a certain percentage to drop. I’m wondering how can I go about doing this? Would it be better for
- Weighted Table; with the drops in it and their chances
- math.random(1,#howrare); for example math.random(1,1000) 1/1000 chance to obtain
- What’s your suggestion?