First go to the perfect circle page then press F12 for Windows or inspect for mac users tip: inspect is right click then click on inspect
then after that go to console and paste this and click enter: javascript:(function() { let s = document.querySelector("main svg").getBoundingClientRect(), cx = s.width / 2 + s.x, cy = s.height / 2 + s.y, r = s.width / 2, // Increased radius to fit more of the screen d = document.querySelector("main div"), a = 0; for (let e = 0; e < 100; e++) { // Increased number of steps for a smoother circle a += Math.acos(1 - Math.pow(60 / r, 2) / 2); let t = Math.round(cx + r * Math.cos(a)), n = Math.round(cy + r * Math.sin(a)); if (e === 0) { d.dispatchEvent(new MouseEvent("mousedown", { clientX: t, clientY: n })); } d.dispatchEvent(new MouseEvent("mousemove", { clientX: t, clientY: n })); } d.dispatchEvent(new MouseEvent("mouseup")); })();