How to fire a event like 100 times at the same time

Im working on a game and some exploiter doin something and getting games cars for free and i have no clue how they doin so. They saying that they using some event and firing it multiple times to get the cars. So im about to test something but dont know how to fire a event multiple times.

You can try using a for i loop, though this won’t do them all at the same time

for i = 0 , 100 do
	--your code you want to repeat 100 times
end

Basically " i " starts at zero and " i " goes up by one until it equals 100, this is just a brief explanation so I’ll just link you the documentation.