Intuitive Debugger: Breakpoints window SLOWS script speed by UP TO 50%

  1. Make sure the new breakpoint window is CLOSED.
  2. Put this on a LocalScript:
local Count = 0
local Avg = 0
local TickOld = tick()
repeat
	local Tick1 = tick()
	task.wait()
	local Tick2 = 1/(tick()-Tick1)
	Count += 1
	Avg += Tick2
	if Tick1 - TickOld >= 1 then
		TickOld = Tick1
		print('avg:',math.round(Avg/Count))
	end
until false
  1. Run. You will have something like 60 → 65 task.wait() per second:

  2. Enable the breakpoints window and run. You will have something like 30 → 45 task.wait() per second:

Closing in favor of Intuitive Debugger: Absurdly Slow Debug

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.