What Is Radar in Minecraft?

Radar is a Minecraft client module that plots nearby players and entities on a top-down overlay, revealing position through walls without a full ESP render.

Modulesby trqUpdated July 13, 2026
Key takeaways
  • Radar plots nearby players and entities on a top-down overlay, showing direction and distance no matter where the camera points.
  • It reuses position data the server already sends, so it needs no extra network traffic.
  • It works through walls, since it never depended on line of sight, which is why most servers ban it.
  • Tenacity ships a documented Radar module.

Radar is a Minecraft client module that draws a top-down, minimap-style overlay showing where nearby players and entities sit relative to you, no matter which way the camera is pointed. Instead of rendering full models through walls the way ESP does, it compresses that same awareness down to a scatter of dots: direction, distance, done. You get a warning that someone is closing in from around a corner or over a ridge, without the visual clutter of watching a body clip through terrain. It reads less like a hack and more like a sonar ping, which is exactly why players like it, and exactly why servers don't.

How it works

Every entity near you already has a position the server is tracking and sending to your client. That's how normal rendering, hit detection, and the tab list all function. Radar takes that same relative position data, direction and distance from you, and plots it as a dot on a flat overlay laid over the HUD, instead of feeding it only into normal, occlusion-respecting rendering.

The overlay is typically oriented either to true north or to the direction you're currently facing, so a dot's angle on the radar maps to a real angle in the world. Face a different way and the dots rotate with you if it's facing-relative, or hold still if it's north-locked. Either way, Radar never asks the server for anything a vanilla client wouldn't already receive. It just visualizes data that's normally invisible to you.

Is Radar safe to use

Radar sits in the same family as ESP and other awareness modules. It shows you positions a normal client would never render, through walls, outside your field of view, so most servers classify it as a cheat rather than a cosmetic feature, and it carries the same ban risk.

Because it only redraws data the client already has, it doesn't generate the kind of unusual network traffic a server can flag on its own. Detection instead tends to come from two places: your own behavior, and client-side scans. Turning toward a player before they're visible, repositioning to dodge someone with no line of sight to them, or reacting to entities that should be off-screen are all tells that you're working off information a legitimate client doesn't have. Anticheats that scan the client binary or memory for known Radar or ESP signatures add a second layer on top of that.

Bannable on nearly every ruleset

Radar reveals information a vanilla client can't show you. That puts it in the same enforcement bucket as ESP on most servers: not a gray area, a bannable module. Treat it as a reference for how the feature works, not a how-to.

Opal doesn't currently ship a dedicated Radar module. Worth knowing if you're comparing utility clients on this specific feature: "radar" branding gets used loosely across the space, and it doesn't always mean the same thing under the hood from client to client.

FAQ