I honestly don't understand it.
I use it to count fps.
local runs = game:GetService("RunService") local frames = 0 runs.RenderStepped:connect(function() frames = frames + 1 end) while wait(1) do print("Local fps: "..frames) frames = 0 end