Learn · modules

What Is Skeletons in Minecraft?

Skeletons is a Minecraft module that reskins every player and mob into a bare-bones model. A cosmetic swap with zero effect on hitboxes or detection risk.

TRtrolPublished 4 min read

What is Skeletons in Minecraft?

Skeletons is a module that redraws every player and mob you see as a plain skeleton, stripped down to bones and nothing else. It's a purely visual override: the game keeps sending your client the same position, pose, and hitbox data it always has, this module just swaps which model gets painted over that data. Nothing about how an entity moves, fights, or gets tracked by the server changes. It's a private reskin you carry with you, the kind of feature that exists because someone wanted every match to look the same regardless of who's actually standing there.

How the skeleton reskin works

Minecraft's renderer already has everything it needs to draw any entity: position, rotation, pose, animation state, all of it arrives over the network because the game can't function without it. Skeletons doesn't touch any of that data. It hooks the draw call itself and substitutes a skeleton model and texture in place of whatever the entity would normally show, the same kind of override a resource pack applies, except it lives inside the client instead of a separate pack file you install and swap out.

Because the underlying entity data never changes, the module adds no extra network traffic and touches no server-side state. Position, hitbox, and animation still come from wherever the server put them. The only thing different is what gets painted on top, locally, every time that entity is drawn.

  1. Server sends entity data

    The server transmits position, rotation, pose, and animation state for every entity.

  2. Client receives normally

    Your client processes that data exactly as vanilla would.

  3. Draw call intercepts

    Before rendering, Skeletons hooks in and substitutes the skeleton model.

  4. Visual override only

    Position, hitbox, and behavior remain untouched. Only the picture changes.

Is it safe to use?

Skeletons carries little competitive risk on its own. It doesn't reveal anyone through walls, doesn't add outlines or markers, and doesn't touch aim, movement, or combat math in any way an anticheat measures. The entity's real position and hitbox are exactly what the server sent; only the picture on your own screen is different, so there's nothing measurable for a server-side check to flag.

The catch is the client it ships in, not the module. Skeletons shows up in Fan, a third-party utility client, and plenty of servers ban any modified client outright, regardless of which individual modules happen to be switched on. A purely cosmetic feature like this doesn't create risk by itself, but running it as part of a client that also carries combat or movement modules can still end in a ban tied to the client as a whole.

Cosmetics without touching the numbers

SkeletonsA combat module
Reveals informationNoYes
Measures in packetsNoYes
Leaves behavioral trailNoYes
Risk from the module aloneNoneHigh
Risk from the client overallMediumHigh

That line between cosmetic and mechanical is exactly where Skeletons sits: change what you see, never what the server measures.

FAQ