βοΈConfiguration
In this section you will be able to see how to edit and configure the HUD in a personalized way so that you can adapt each function offered by our script to your needs.
1. Tailwind Config
Our HUD script is designed and built using a responsive technology that, through Tailwind, helps the project to be fully adaptable to any resolution.
In addition, it has an interactive file so that each user can quickly configure the most important parameters in the visual environment of the HUD, such as the main color that by default will be blue.
if (!tailwind) tailwind = {};
tailwind.config = {
theme: {
extend: {
colors: {
primary: 'rgba(0, 136, 204, 255)\n',
},
fontFamily: {
onest: ['Onest', 'sans-serif'],
rajdhani: ['Rajdhani', 'sans-serif'],
},
boxShadow: {
'dynamic': '0 0 .4vw rgba(0, 0, 0, 0.665)',
},
dropShadow: {
'dynamic': '0 0 .4vw rgba(0, 0, 0, .665)',
},
}
}
};2. Main File
Next we will share the Config.lua file that will allow our customers to configure the script as much as they want:
Last updated
Was this helpful?