Learn · concepts

What Is CPS in Minecraft? Clicks-Per-Second Explained

CPS is the HUD module that counts your mouse clicks per second and displays the live number while you play.

TRtrolPublished 3 min read

What is CPS?

CPS stands for clicks per second, and as a Minecraft module it is a small HUD readout that counts how fast you are clicking and prints the number on screen in real time. Instead of alt-tabbing to some external click-counter website mid-game, you get a live number anchored near your crosshair or sitting in a HUD corner, refreshing every second you keep clicking. It is a measurement tool, not a mechanic. The module watches input you are already generating and reports it back to you. It does not touch the input itself.

When you're grinding PvP, a CPS counter lets you see your click speed without breaking focus. That number tells you whether your jitter-clicking technique is holding up, whether you're getting tired and slowing down, or whether you just hit a new personal record. It's feedback on your own hand, nothing more.

How it works

CPS counts mouse-button presses inside a rolling one-second window and writes the running total to the HUD. Every click bumps the counter for whichever window is currently open. Once a second elapses, the display swaps to the new total and starts counting again. Because the window keeps resetting instead of averaging over some longer stretch, the number tracks your actual clicking pace, not a smoothed-out figure from ten seconds ago.

The module never gets between your mouse and the server. Read an input event, increment a counter, draw a string, that is the entire pipeline. A click that fires still reaches the server as exactly one click: same timing, same packet, same everything. The CPS readout is just a scoreboard for a game you're already playing.

Is it safe to use?

Yes, cleanly. A CPS counter reads local mouse input and renders a number on your own HUD, full stop. It never sends an extra packet, never alters what the server receives, never touches a value the server would use to resolve an action. There is simply nothing here for a server-side anticheat to evaluate, because the feature never leaves your machine.

The confusion with autoclickers is understandable since both terms involve click speed, but they sit on opposite ends of the same idea. An autoclicker generates clicks on its own and is a genuine, bannable cheat. A CPS counter does the reverse: it measures clicks a human already made. One produces input, the other just reports on it.

FAQ