{"id":105679,"date":"2023-12-19T01:45:24","date_gmt":"2023-12-19T00:45:24","guid":{"rendered":"https:\/\/fivem-mods.net\/?post_type=product&#038;p=105679"},"modified":"2026-08-06T12:36:02","modified_gmt":"2026-08-06T10:36:02","slug":"wasabi-admin-menu","status":"publish","type":"product","link":"https:\/\/fivemx.com\/nl\/wasabi-admin-menu\/","title":{"rendered":"Wasabi Admin Menu"},"content":{"rendered":"<h2>Video<\/h2>\n<div class=\"video-container\"><iframe title=\"Wasabi&#039;s FiveM Admin Menu [ ESX \/ QBCORE ]\" width=\"1170\" height=\"658\" src=\"https:\/\/www.youtube.com\/embed\/kT4KMSlW_o4?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen referrerpolicy=\"strict-origin-when-cross-origin\"><\/iframe><\/div>\n<h2>Config.lua<\/h2>\n<pre data-no-translation=\"\" class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">Config = {}\n\nConfig.MenuPosition = 'top-right' -- Menu position when open (Options: 'top-left' or 'top-right' or 'bottom-left' or 'bottom-right')\nConfig.OpenKey = 'F9' -- Default key for opening admin menu\nConfig.UsingVehicleKeys = 'qb' -- Supported options: 'wasabi' for wasabi_carlock \/ 'qb' for qb-vehiclekeys \/ 'jaksam' for jacksam_carlock \/ 'custom' for custom in modifyme.lua -- Set to false if not needed\nConfig.SkinMenu = 'qb' -- 'esx_skin' = ESX Skin \/ 'qb' = qb-clothing \/ 'fivem-appearance' = FiveM appearance \/ 'custom' = custom in modifyme.lua\nConfig.FuelSystem = 'legacyfuel' -- Supported options: 'ox' - ox_fuel\/ 'legacyfuel' - LegacyFuel \/ false - anything else\nConfig.Inventory = 'qb' -- Current options: 'ox' (For ox_inventory) \/ 'qb' (For qb-inventory) 'mf' (For mf inventory) \/ 'qs' (For qs_inventory) \/ 'cheeza' (for chezza inventory) -- false for none (Can be edited in modifyme.lua)\nConfig.SpeedMeasurement = 'mph' -- Options: 'mph' or 'kmh'\n\nConfig.AdminPerms = { -- Different ways of defining who has permission to access and utilize the admin menu\n    UserGroups = {\n        enabled = true, -- Enable usergroups from framework (Esx\/QBCore), example\/common groups below by default.\n        Groups = {\n            'admin',\n            'god',\n        --  'mod',\n        }\n    },\n    \n    ----------------------------------------------------------------------------\n    -- If ace perms are desired, an example of ace perms to set in server.cfg:--\n    -- add_ace group.admin 'wasabi.adminmenu.allow' allow                     --\n    ----------------------------------------------------------------------------\n    AcePerms = { enabled = true, AcePerm = 'wasabi.adminmenu.allow' } \n}\n\n--- Commands\nConfig.Commands = {\n    Ban = { \n        enabled = true, -- Enable ban command?\n        command = 'ban' -- Command (Default: 'ban')\n        -- Example: \/ban ID_HERE OPTIONAL_REASON_HERE\n        -- Indefinite ban. Use menu for temporary ban\n    },\n    Kick = {\n        enabled = true, -- Enable kick command?\n        command = 'kick' -- Command (Default: 'kick')\n        -- Example: \/kick ID_HERE OPTIONAL_REASON_HERE\n    },\n    NoClip = {\n        enabled = true, -- Enable noclip command?\n        command = 'noclip' -- Command (Default: 'noclip')\n        -- Example: \/noclip\n    },\n    SearchInv = {\n        enabled = true, -- Enable searchinv command?\n        command = 'searchinv' -- Command (Default: 'searchinv')\n        -- MUST HAVE Config.Inventory CONFIGURED TO PROPER INVENTORY!\n        -- Example: \/searchinv ID_HERE (Opens target inventory)\n    },\n    ClearInv = {\n        enabled = true, -- Enable clearinv command?\n        command = 'clearinv' -- Command (Default: 'clearinv')\n        -- MUST HAVE Config.Inventory CONFIGURED TO PROPER INVENTORY!\n        -- Example: \/clearinv ID_HERE (Clears target inventory)\n    },\n    SkinMenu = {\n        enabled = true, -- Enable skinmenu command?\n        command = 'skinmenu' -- Command (Default: 'skinmenu')\n        -- MUST HAVE Config.SkinMenu CONFIGURED TO PROPER SKIN \/ CLOTHING SCRIPT\n        -- Example: \/skinmenu ID_HERE (Opens skin menu on target's screen)\n    }\n}\n\n--- WEATHER SETTING OPTIONS\nConfig.Weathers = {\n    {label = 'Clear Skies', value = 'CLEAR'},\n    {label = 'Extra Sunny', value = 'EXTRASUNNY'},\n    {label = 'Cloudy', value = 'CLOUDS'},\n    {label = 'Foggy', value = 'FOGGY'},\n    {label = 'Thunder', value = 'THUNDER'},\n    {label = 'Rainy', value = 'RAIN'},\n    {label = 'Halloween', value = 'HALLOWEEN'},\n    {label = 'Snow Light', value = 'SNOWLIGHT'},\n    {label = 'XMAS', value = 'XMAS'}\n}\n\n--- BAN SETTING OPTIONS\nConfig.Ban = { --- value = ban time in hours\n    {label = '2 Hours', value = 2}, \n    {label = '24 Hours', value = 24},\n    {label = '1 Week', value = 168},\n    {label = 'Permanent', value = 'perm'}\n}\n\n--- JOB ANNOUNCEMENT OPTIONS\nConfig.Jobs = { -- label value is for how it is displayed in the menu. name must be exact as in your jobs database\/table\n    { label = 'Police', name = 'police' },\n    { label = 'EMS', name = 'ambulance' },\n    { label = 'Mechanic', name = 'mechanic' },\n    { label = 'Car Dealer', name = 'cardealer' }\n}\n\n--- NO CLIP OPTIONS\nConfig.Noclip = {\n     FirstPersonWhileNoclip = true,\n     DefaultSpeed = 1.0,\n     MaxSpeed = 12.0,\n     Controls = {\n         DecreaseSpeed = 14, -- Mouse wheel down\n         IncreaseSpeed = 15, -- Mouse wheel up\n         MoveFoward = 32, -- W\n         MoveBackward = 33, -- S\n         MoveLeft = 34, -- A\n         MoveRight = 35, -- D\n         MoveUp = 44, -- Q\n         MoveDown = 46, -- E\n     },\n     Particle = {\n         Fxname = 'core',\n         Effectname = 'ent_dst_elec_fire_sp'\n     }\n}\n\n---- VEHICLE RELATED OPTIONS\nConfig.VehicleColors = { --- https:\/\/pastebin.com\/pwHci0xK\n    { label = 'Red', value = 27 },\n    { label = 'Black', value = 0 },\n    { label = 'Sunset Red', value = 33 },\n    { label = 'Hot Pink', value = 135 },\n    { label = 'Salmon Pink', value = 136 },\n    { label = 'Dark Green', value = 49 },\n    { label = 'Surf Blue', value = 68 },\n    { label = 'Woodbeech Brown', value = 102 },\n    { label = 'Cast Iron Silver', value = 10 },\n    { label = 'Ice White', value = 111 },\n    { label = 'Cream', value = 107 },\n    { label = 'Frost White', value = 112 }\n}\n\nConfig.TorqueMultiplier = { --- https:\/\/docs.fivem.net\/natives\/?_0xB59E4BD37AE292DB\n    { label = 'Off', value = 1.0 },\n    { label = '25%', value = 4.0 },\n    { label = '50%', value = 8.0 },\n    { label = '75%', value = 10.0 },\n    { label = '100%', value = 100.0 }\n}<\/pre>\n<p>&nbsp;<\/p>\n<div class=\"video-container\"><\/div>\n","protected":false},"excerpt":{"rendered":"<h2>Functies<\/h2>\n<p><strong>Algemeen:<\/strong><\/p>\n<ul>\n<li><a href=\"https:\/\/fivemx.com\/nl\/converting-fivem-scripts\/\" title=\"Converteren van FiveM Scripts \u2013 ESX, QBCore, QBOX (Framework Guide)\"  data-wpil-monitor-id=\"1647\">ESX \/ QBCore \/ Qbox<\/a> compatibel<\/li>\n<li>Beveiligde gebeurtenissen en callbacks (Geen vervelende modders)<\/li>\n<li>Compatibel met inventarissen:\u00a0<code>ox_inventory<\/code>,\u00a0<code>qb-inventory<\/code>,\u00a0<code>qs-inventory<\/code>,\u00a0<code>mf-inventory<\/code>,\u00a0<code>esx-inventory<\/code>,\u00a0<code>cheeza<\/code>, en custom kan worden toegevoegd (Optioneel)<\/li>\n<li>Compatibele skin-menu's:\u00a0<code>esx_skin<\/code>,\u00a0<code>qb-clothing<\/code>,\u00a0<code>fivem-uiterlijk<\/code>, en custom kan worden toegevoegd (Optioneel)<\/li>\n<li>Compatibele autoslot systemen:\u00a0<code>wasabi_carlock<\/code>,\u00a0<code>qb-vehiclekeys<\/code>,\u00a0<code>jacksam<\/code>\u00a0en aangepaste kunnen worden toegevoegd (Optioneel)<\/li>\n<li>Compatibele brandstofsystemen:\u00a0<code>legacyfuel<\/code>,\u00a0<code>ox_fuel<\/code>\u00a0of een ander systeem (Optioneel)<\/li>\n<\/ul>\n<p><strong>Machtigingen:<\/strong><\/p>\n<ul>\n<li>Ace-permissie toegankelijk (Configureerbaar)<\/li>\n<li>Framework gebruikersgroep toegankelijk (QBCore \/ ESX \/ Qbox \u2013 Configureerbaar)<\/li>\n<\/ul>\n<p><strong>Zelfbeheer:<\/strong><\/p>\n<ul>\n<li>Bekijk eigen gezondheid<\/li>\n<li>Schakel no-clip in\/uit<\/li>\n<li>Schakel onkwetsbaarheid in\/uit<\/li>\n<li>Schakel onzichtbaarheid in\/uit<\/li>\n<li>Herleef jezelf<\/li>\n<li>Genees jezelf<\/li>\n<li>Open skinmenu (compatibele skinmenu's hierboven)<\/li>\n<li>Stel ped in (configureerbare peds in\u00a0<code>peds.lua<\/code>)<\/li>\n<\/ul>\n<p><strong>Spelerbeheer:<\/strong><\/p>\n<ul>\n<li>Bekijk lijst van online spelers en hun ID's<\/li>\n<li>Beheer gezondheid van speler<\/li>\n<li>Bekijk geld en rekeningen van speler<\/li>\n<li>Geef rekeningsgeld \/ items aan spelers<\/li>\n<li>Bekijk inventaris van speler (compatibele inventarissen hierboven)<\/li>\n<li>Wis inventaris van speler (compatibele inventarissen hierboven)<\/li>\n<li>Geef speler skinmenu (compatibele skinmenu's hierboven)<\/li>\n<li>Bevries speler<\/li>\n<li>Schakel no-clip voor speler in\/uit<\/li>\n<li>Schakel onkwetsbaarheid voor speler in\/uit<\/li>\n<li>Schakel onzichtbaarheid voor speler in\/uit<\/li>\n<li>Breng \/ ga naar spelers<\/li>\n<li><a href=\"https:\/\/fivemx.com\/nl\/tutorials\/reasons-why-players-are-getting-banned-on-fivem\/\"  data-wpil-monitor-id=\"308\">Ban \/ kick spelers<\/a><\/li>\n<\/ul>\n<p><strong>Serverbeheer:<\/strong><\/p>\n<ul>\n<li>Bekijk \/ beheer verbanningen<\/li>\n<li>Verwijder alle auto's (zonder bestuurders)<\/li>\n<li>Verwijder alle peds<\/li>\n<li>Verwijder alle objecten<\/li>\n<li>Weer instellen voor server<\/li>\n<li>Verstuur globale admin-aankondiging<\/li>\n<li>Verstuur taakspecifieke admin aankondiging<\/li>\n<\/ul>\n<p><strong>Ingebouwd Ban Systeem:<\/strong><\/p>\n<ul>\n<li>Ban spelers via menu of commando voor een ingestelde tijd (Configureerbaar)<\/li>\n<li>Bekijk, bewerk en verwijder actieve verbanningen in de\u00a0<em>Serverbeheer<\/em>\u00a0sectie van het menu<\/li>\n<\/ul>\n<p><strong>Voertuigopties:<\/strong><\/p>\n<ul>\n<li>Genereer voertuig met aangepaste kleuren, kentekenplaat en optie voor maximale mods<\/li>\n<li>Voertuig repareren<\/li>\n<li>Kenteken van voertuig wijzigen<\/li>\n<li>Verwijder dichtstbijzijnde voertuig<\/li>\n<li>Voertuig bijtanken<\/li>\n<li>Schakel de vergrendelstatus van de dichtstbijzijnde auto in\/uit<\/li>\n<li>Kleur van voertuig wijzigen<\/li>\n<li>Voertuig op maximaal brandstof zetten (Compatibele brandstofscripts hierboven)<\/li>\n<li>Wijzig het koppel van het voertuig<\/li>\n<\/ul>\n<p><strong>Ontwikkelaarsopties:<\/strong><\/p>\n<ul>\n<li>Debug-modus inschakelen (Een raycast om informatie over entiteiten\/objecten te verkrijgen, zoals co\u00f6rdinaten en hash. Ook optie om entiteit te verwijderen)<\/li>\n<li>Kopieer vector3 co\u00f6rdinaten naar klembord<\/li>\n<li>Kopieer vector4 co\u00f6rdinaten naar klembord<\/li>\n<\/ul>\n<p><strong>Opdrachten:<\/strong><\/p>\n<ul>\n<li>ban, kick, no clip, search inventory, clear inventory, en skin menu commando's (Configureerbaar)<\/li>\n<\/ul>\n<p><strong>Admin Zones:<\/strong><\/p>\n<ul>\n<li>Definieer, bewerk en beheer gedefinieerde admin-zones<\/li>\n<li>Mogelijkheid om naam, blip, kleur en grootte van de zone in te stellen bij het aanmaken<\/li>\n<li>Mogelijkheid om in te stellen of mensen automatisch worden gereanimeerd binnen de zone<\/li>\n<li>Mogelijkheid om in te stellen of mensen automatisch worden ontwapend binnen de zone<\/li>\n<li>Mogelijkheid om in te stellen of mensen onkwetsbaar zijn binnen de zone<\/li>\n<li>Mogelijkheid om snelheidslimiet binnen zone in te stellen voor voertuigen<\/li>\n<li>Bekijk actieve admin zones, bewerk ze, verwijder ze of teleporteer ernaartoe<\/li>\n<\/ul>\n<p><em>Veel updates gepland en suggesties worden actief ge\u00efmplementeerd!<\/em><\/p>","protected":false},"featured_media":105680,"comment_status":"open","ping_status":"closed","template":"","meta":[],"product_brand":[2910],"product_cat":[96,1138,512],"product_tag":[],"class_list":["post-105679","product","type-product","status-publish","has-post-thumbnail","product_brand-wasabi-scripts","product_cat-esx-scripts","product_cat-admin-tools","product_cat-qbcore-scripts","first","instock","sale","downloadable","virtual","taxable","purchasable","product-type-simple"],"_links":{"self":[{"href":"https:\/\/fivemx.com\/nl\/wp-json\/wp\/v2\/product\/105679","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fivemx.com\/nl\/wp-json\/wp\/v2\/product"}],"about":[{"href":"https:\/\/fivemx.com\/nl\/wp-json\/wp\/v2\/types\/product"}],"replies":[{"embeddable":true,"href":"https:\/\/fivemx.com\/nl\/wp-json\/wp\/v2\/comments?post=105679"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fivemx.com\/nl\/wp-json\/wp\/v2\/media\/105680"}],"wp:attachment":[{"href":"https:\/\/fivemx.com\/nl\/wp-json\/wp\/v2\/media?parent=105679"}],"wp:term":[{"taxonomy":"product_brand","embeddable":true,"href":"https:\/\/fivemx.com\/nl\/wp-json\/wp\/v2\/product_brand?post=105679"},{"taxonomy":"product_cat","embeddable":true,"href":"https:\/\/fivemx.com\/nl\/wp-json\/wp\/v2\/product_cat?post=105679"},{"taxonomy":"product_tag","embeddable":true,"href":"https:\/\/fivemx.com\/nl\/wp-json\/wp\/v2\/product_tag?post=105679"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}