Changing links
If you want to use for example store, youtube, discord buttons and you want to properly configure them please go to /shared/ui_cfg/config_pausemenu.lua
file.
Find the code:
Config.PauseMenu.NavbarElements = {
['youtube'] = {
label = 'YouTube',
icon = 'fab fa-youtube',
url = 'https://www.youtube.com/@ZSXDevelopment',
use = true,
},
['store'] = {
label = 'Store',
icon = 'fas fa-globe',
url = 'https://www.mywebsite.com',
use = true,
},
['discord'] = {
label = 'Discord',
icon = 'fab fa-discord',
url = 'https://discord.gg',
use = true,
},
}
And change every key url to your liking!
You can also disable each component by setting key use to false and vice-versa.
Last updated