Skip to Content
Digital Ammo Counter

Digital Ammo Counter

A digital ammo counter is a screen you can put on the gun itself, like the kind you’d see in Halo.

Halo ammo counter example

This ammo counter displays just the ammo count of the gun, and it updates live as the gun fires.

First, you need to add in the screen in the gun’s model in Blockbench. The process is the same as you’d do for a PIP scope.

Blockbench ammo example

The screen cube is inside bone _bone_ and the cube needs to be symmetrical. Make sure the bone’s pivot is centered.

Blockbench ammo example 2

After that, you add some new lines to the gun JSON:

{ "type": "AmmoCounter", "textColor": "#65cce0" }

This goes inside the features section.

"features": [ { "type": "AmmoCounter", "textColor": "#65cce0" } ]

Here, the feature type is AmmoCounter.

And there’s one value to control: textColor, which allows you to define the color of the text.

Last updated on