Hey there, this is just a question kind of, out of the blue… but let’s say you have two scenarios.
One runtime listener with a for loop that runs 3 times.
Three runtime listeners.
This is assuming both scenarios have listeners that do the same things.
Case 1: function hi() print("hey there") end function print1() for i = 1, 3 do hi() end end Runtime:addEventListener("enterFrame", print1) Case 2: function hi() print("hey there") end Runtime:addEventListener("enterFrame", hi) Runtime:addEventListener("enterFrame", hi) Runtime:addEventListener("enterFrame", hi)

