int x = 2;
int y = 4;
String text = "METEOR ";
String text2 = " v0.1 ";
float width = Fonts.MONTSERRAT16.getStringWidth(text) + 8;
float alpha = Expensive.getInstance().getModuleManager().arraylist.alpha.get();
int color = Expensive.getInstance().getModuleManager().arraylist.getColor(5);
if (blur.get())
NORMAL_BLUR_RUNNABLES.add(() -> RenderUtility.drawRect(x, y, width, 13, ColorUtility.rgba(21, 21, 21, 255)));
if (shadow.get())
NORMAL_SHADOW_BLACK.add(() -> RenderUtility.drawRect(x, y, width, 13, ColorUtility.rgba(21, 21, 21, 50)));
RenderUtility.drawRect(x, y, width, 13, ColorUtility.rgba(8, 8, 8, alpha));
RenderUtility.drawGradientHorizontal(1.9f, 4.8f, width + 1, 0.1f, 3, Expensive.getInstance().getModuleManager().arraylist.getColor(0), Expensive.getInstance().getModuleManager().arraylist.getColor(90));
Fonts.MONTSERRAT16.drawString(text, x + 2.8f, y + 5.5f, ColorUtility.rgba(255, 255, 255, 255));
Fonts.MONTSERRAT10.drawString(text2, x + 5, y + 5.5f, ColorUtility.rgba(255, 255, 255, 255));
}