local elements = { {icon ='fas fa-users-cog', label ='General', value =1}, {icon = 'fas fa-globe', label = 'Online Players', value = 2, hint = "This is an example hint, here you can suggest what this option does and below you can put a hint image", hintImage = "IMAGE_URL"},
{icon ='fas fa-tshirt', label ='Admin Clothes', value =3}, {icon ='fas fa-car', label ='Vehicle', value =4}, {label ='Server Restart', value =5}, {icon ='fas fa-brackets-curly', label ='Developer Options', value =6}}ESX.UI.Menu.CloseAll()ESX.UI.Menu.Open('default', GetCurrentResourceName(), 'unique_name_menu', { title ='ADMIN MENU', align ='center', elements = elements}, function(data,menu)if data.current.value ==1then-- Entering to Generalelseif data.current.value ==2then-- Entering to Online Playerselseif data.current.value ==3then-- Entering to Admin Clotheselseif data.current.value ==4then-- Entering to Vehicleelseif data.current.value ==5then-- Entering to Server Restartelseif data.current.value ==6then-- Entering to Developer Optionsend menu.close()end, function(data,menu) menu.close()end)