I'm trying to make an event happen every 2-5 minutes. How would I do that? In my game,a random event will run every 2-5 minutes, but I don't know how to even begin.
I'm not entirely sure what you mean, but this might work:
while condition do wait(math.random(120,300)) event end
Replace "condition" with whatever condition it is, and replace "event" with whatever event you're trying to fire. If you don't want it to run all the time, you could put the while loop in a function that fires at a certain point (for example when the condition in the while loop is met).