This one logs current, highest, lowest, & average FPS to a file and on-screen Code: function onMissionStart() ----------------------------------------------- --FPS COUNTER ----------------------------------------------- --Table to store all FPS data FPS = { current = 0, average = 0, highest = 0, lowest = 10000, total = 0, score = 0 } --Return the os ...