⚙️Configuration

Custom Edits: You can freely change the branding, the colors or translate the texts. • Framework: Standalone • Config option for the music to be played outside or inside vehicle only. • You can disable the drift mode in the config. • The neon lights can also be disabled so it works only if the player installs the neons at the mechanic workshop. • The loops and updates intervals can all be configured to optimize the script to your liking. • Command and keybind can be changed • You can easily blacklist a vehicle class to not access the vehicle menu such as Trains. • Custom event to open the menu in your Radial Menu or any other script.

circle-info

How to make UI and Menu smaller

Under style.css look for #zr-container and add transform: scale(0.8);

Adjust the 0.8 number to your liking.

#zr-container {
    display: none;
    gap: 36px;
    width: min-content;
    height: 802px;
    padding: 24px;
    background-color: var(--zr-rich-black);
    border-radius: 36px;
    overflow: hidden;
    resize: both;
    max-width: max-content;
    min-width: 655px;
    max-height: 802px;
    min-height: 602px;
    transform: scale(0.8);
}
circle-info

Lua config file

circle-exclamation

Last updated