{"id":22068,"date":"2026-06-11T12:22:08","date_gmt":"2026-06-11T12:22:08","guid":{"rendered":"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/"},"modified":"2026-06-11T12:22:08","modified_gmt":"2026-06-11T12:22:08","slug":"fivem-qbcore-admin-commands-guide","status":"publish","type":"post","link":"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/","title":{"rendered":"FiveM QBCore Admin Commands Cheat Sheet (2026)"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Running a QBCore server means you will reach for admin commands constantly \u2014 handing a player their missing items, correcting a broken job assignment, spawning a test vehicle, or locking down the server before a restart. This cheat sheet covers every command built into <code>qb-core<\/code> and <code>qb-adminmenu<\/code>, plus the ACE permission block you need in <code>server.cfg<\/code> to make them work. All syntax is taken directly from the <a href=\"https:\/\/docs.qbcore.org\" target=\"_blank\" rel=\"noopener\">official QBCore documentation<\/a> and the <code>qb-core<\/code> GitHub source \u2014 nothing is guessed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Understanding QBCore Permission Tiers<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Before any command works, your <code>server.cfg<\/code> must declare the right ACE (Access Control Entry) hierarchy. QBCore ships with three built-in principal groups:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>qbcore.god<\/strong> \u2014 highest tier; inherits all admin and mod permissions. Only this tier can run <code>\/kickall<\/code>.<\/li>\n<li><strong>qbcore.admin<\/strong> \u2014 day-to-day administration; access to all gameplay-management commands.<\/li>\n<li><strong>qbcore.mod<\/strong> \u2014 lightest tier; inherited by admin, so mods get a subset of admin capabilities.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Add the following block to the bottom of your <code>server.cfg<\/code>, replacing the placeholder licence hashes with real values. You can find your Rockstar licence hash in the txAdmin web panel under <strong>Players<\/strong>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>## QBCore ACE Permissions ##\n\n# Give the admin group unrestricted command access\nadd_ace group.admin command allow\n\n# Allow qb-core resource to run privileged commands\nadd_ace resource.qb-core command allow\n\n# God tier gets all commands\nadd_ace qbcore.god command allow\n\n# Inheritance chain: god \u2192 admin \u2192 mod\nadd_principal qbcore.god group.admin\nadd_principal qbcore.god qbcore.admin\nadd_principal qbcore.admin qbcore.mod\n\n# Assign players \u2014 use identifier.license: (recommended by QBCore)\nadd_principal identifier.license:XXXXXXXXXXXXXXXXXXXXXXXXX qbcore.god  # YourName\nadd_principal identifier.license:XXXXXXXXXXXXXXXXXXXXXXXXX qbcore.admin # StaffName\nadd_principal identifier.license:XXXXXXXXXXXXXXXXXXXXXXXXX qbcore.mod   # ModName<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">FiveM also supports <code>identifier.discord:<\/code>, <code>identifier.fivem:<\/code>, and <code>identifier.steam:<\/code> as alternatives to the Rockstar licence, but the QBCore docs recommend the <code>license:<\/code> format for reliability.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Complete QBCore Admin Command Reference<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The table below lists every command registered in <code>qb-core<\/code> and <code>qb-adminmenu<\/code>. The <strong>Source<\/strong> column tells you which resource must be ensured \u2014 <code>qb-core<\/code> is always running, but <code>qb-adminmenu<\/code> must be explicitly started.<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th>Command<\/th><th>Syntax<\/th><th>Permission<\/th><th>Source<\/th><\/tr><\/thead><tbody>\n<tr><td>\/giveitem<\/td><td><code>\/giveitem [id] [item] [amount]<\/code><\/td><td>admin<\/td><td>qb-core<\/td><\/tr>\n<tr><td>\/givemoney<\/td><td><code>\/givemoney [id] [type] [amount]<\/code><\/td><td>admin<\/td><td>qb-core<\/td><\/tr>\n<tr><td>\/setmoney<\/td><td><code>\/setmoney [id] [type] [amount]<\/code><\/td><td>admin<\/td><td>qb-core<\/td><\/tr>\n<tr><td>\/setjob<\/td><td><code>\/setjob [id] [job] [grade]<\/code><\/td><td>admin<\/td><td>qb-core<\/td><\/tr>\n<tr><td>\/setgang<\/td><td><code>\/setgang [id] [gang] [grade]<\/code><\/td><td>admin<\/td><td>qb-core<\/td><\/tr>\n<tr><td>\/car<\/td><td><code>\/car [model]<\/code><\/td><td>admin<\/td><td>qb-core<\/td><\/tr>\n<tr><td>\/dv<\/td><td><code>\/dv<\/code><\/td><td>admin<\/td><td>qb-core<\/td><\/tr>\n<tr><td>\/maxmods<\/td><td><code>\/maxmods<\/code><\/td><td>admin<\/td><td>qb-core<\/td><\/tr>\n<tr><td>\/admincar<\/td><td><code>\/admincar<\/code><\/td><td>admin<\/td><td>qb-adminmenu<\/td><\/tr>\n<tr><td>\/aheal<\/td><td><code>\/aheal [opt: id]<\/code><\/td><td>admin<\/td><td>qb-core<\/td><\/tr>\n<tr><td>\/kill<\/td><td><code>\/kill [opt: id]<\/code><\/td><td>admin<\/td><td>qb-core<\/td><\/tr>\n<tr><td>\/clearinv<\/td><td><code>\/clearinv [opt: id]<\/code><\/td><td>admin<\/td><td>qb-core<\/td><\/tr>\n<tr><td>\/setmodel<\/td><td><code>\/setmodel [model] [id]<\/code><\/td><td>admin<\/td><td>qb-adminmenu<\/td><\/tr>\n<tr><td>\/noclip<\/td><td><code>\/noclip<\/code><\/td><td>admin<\/td><td>qb-adminmenu<\/td><\/tr>\n<tr><td>\/tp<\/td><td><code>\/tp [id] or \/tp [x] [y] [z]<\/code><\/td><td>admin<\/td><td>qb-core<\/td><\/tr>\n<tr><td>\/tpm<\/td><td><code>\/tpm<\/code><\/td><td>admin<\/td><td>qb-core<\/td><\/tr>\n<tr><td>\/coords<\/td><td><code>\/coords<\/code><\/td><td>admin<\/td><td>qb-adminmenu<\/td><\/tr>\n<tr><td>\/admin<\/td><td><code>\/admin<\/code><\/td><td>admin<\/td><td>qb-adminmenu<\/td><\/tr>\n<tr><td>\/warn<\/td><td><code>\/warn [id] [reason]<\/code><\/td><td>admin<\/td><td>qb-adminmenu<\/td><\/tr>\n<tr><td>\/checkwarns<\/td><td><code>\/checkwarns [id]<\/code><\/td><td>admin<\/td><td>qb-adminmenu<\/td><\/tr>\n<tr><td>\/delwarn<\/td><td><code>\/delwarn [id] [number]<\/code><\/td><td>admin<\/td><td>qb-adminmenu<\/td><\/tr>\n<tr><td>\/announce<\/td><td><code>\/announce [message]<\/code><\/td><td>admin<\/td><td>qb-adminmenu<\/td><\/tr>\n<tr><td>\/staffchat<\/td><td><code>\/staffchat [message]<\/code><\/td><td>admin<\/td><td>qb-adminmenu<\/td><\/tr>\n<tr><td>\/blips<\/td><td><code>\/blips<\/code><\/td><td>admin<\/td><td>qb-adminmenu<\/td><\/tr>\n<tr><td>\/names<\/td><td><code>\/names<\/code><\/td><td>admin<\/td><td>qb-adminmenu<\/td><\/tr>\n<tr><td>\/openserver<\/td><td><code>\/openserver<\/code><\/td><td>admin<\/td><td>qb-core<\/td><\/tr>\n<tr><td>\/closeserver<\/td><td><code>\/closeserver [reason]<\/code><\/td><td>admin<\/td><td>qb-core<\/td><\/tr>\n<tr><td>\/togglepvp<\/td><td><code>\/togglepvp<\/code><\/td><td>admin<\/td><td>qb-core<\/td><\/tr>\n<tr><td>\/kickall<\/td><td><code>\/kickall<\/code><\/td><td><strong>god<\/strong><\/td><td>qb-adminmenu<\/td><\/tr>\n<tr><td>\/report<\/td><td><code>\/report [message]<\/code><\/td><td>user<\/td><td>qb-adminmenu<\/td><\/tr>\n<\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Key Commands Explained<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">\/giveitem \u2014 Hand a Player an Item<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>\/giveitem<\/code> command requires all three parameters. The item name must match an entry in your server&#8217;s items list (defined in <code>qb-core\/shared\/items.lua<\/code> or your inventory resource&#8217;s equivalent).<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/giveitem 3 water 5\n# Gives player ID 3 five bottles of water\n\n\/giveitem 7 weapon_pistol 1\n# Gives player ID 7 one pistol<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\/givemoney and \/setmoney \u2014 Economy Management<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">QBCore ships with three default money types: <code>cash<\/code>, <code>bank<\/code>, and <code>crypto<\/code>. Some servers also configure <code>blackmoney<\/code>. Check your <code>qb-core\/config.lua<\/code> for the exact types enabled on your installation.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/givemoney 3 cash 500\n# Adds $500 cash to player ID 3\n\n\/givemoney 3 bank 10000\n# Deposits $10,000 into player ID 3's bank account\n\n\/setmoney 3 cash 0\n# Sets player ID 3's cash to exactly $0 (useful for resetting)<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\/setjob \u2014 Assign a Job and Grade<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The job name must match an entry in your <code>qb-core\/shared\/jobs.lua<\/code>. Grades are zero-indexed \u2014 grade 0 is the lowest rank. A common mistake is using a display name instead of the internal job key (e.g., use <code>police<\/code>, not <code>Police Department<\/code>).<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/setjob 3 police 2\n# Sets player ID 3 to the police job at grade 2\n\n\/setjob 3 unemployed 0\n# Resets player ID 3 to unemployed<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">To build out custom jobs for your roleplay server, see our guide on <a href=\"https:\/\/xgamingserver.com\/blog\/how-to-create-a-custom-job-in-qbcore\/\">how to create a custom job in QBCore<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">\/car \u2014 Spawn a Vehicle<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Pass the internal GTA V vehicle model name (spawn code), not the display name. Model names are lower-case strings like <code>adder<\/code>, <code>police<\/code>, or <code>fbi2<\/code>. The vehicle spawns at your current position and is not saved to the database unless you follow up with <code>\/admincar<\/code>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/car adder\n# Spawns a Truffade Adder supercar\n\n\/car police\n# Spawns a Police Cruiser\n\n\/dv\n# Deletes your current vehicle (or any vehicle within 5.0 units)<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">\/noclip \u2014 Fly Mode for Admins<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><code>\/noclip<\/code> is a toggle provided by <code>qb-adminmenu<\/code>. Running it once activates fly mode; running it again disables it. This requires <code>qb-adminmenu<\/code> to be running \u2014 it is not part of the base <code>qb-core<\/code> resource. Requires <code>admin<\/code> permission.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">God Mode \u2014 Invincibility via the Admin Menu<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">QBCore does not expose god mode as a standalone slash command. Invincibility is toggled through the <strong>Admin Options<\/strong> section inside the <code>\/admin<\/code> menu (opened with <code>\/admin<\/code>). Navigate the menuV interface to the player options and toggle invincibility from there. Note that this setting is session-local and resets on respawn or reconnect depending on your server&#8217;s configuration.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Installing and Ensuring qb-adminmenu<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><code>qb-adminmenu<\/code> depends on <strong>menuV<\/strong>. Both must be downloaded, placed in your <code>resources\/<\/code> folder, and started before <code>qb-adminmenu<\/code>. Add these lines to your <code>server.cfg<\/code> in the correct order:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ensure menuv\nensure qb-adminmenu<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">If <code>menuV<\/code> is missing or not ensured first, the admin menu will throw a dependency error on startup and none of the menu-based commands (<code>\/noclip<\/code>, <code>\/admin<\/code>, <code>\/warn<\/code>, etc.) will be available. The resource&#8217;s <code>fxmanifest.lua<\/code> declares <code>fx_version 'cerulean'<\/code> and <code>game 'gta5'<\/code>, so it is GTA V \/ FiveM only.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For a complete server setup walkthrough from scratch, the <a href=\"https:\/\/xgamingserver.com\/docs\/fivem\">XGamingServer FiveM docs<\/a> cover everything from artifact installation through resource configuration.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Extending Permissions with Custom Groups<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">You can create custom permission tiers \u2014 for example a <code>qbcore.leo<\/code> group for police-only admin commands \u2014 by adding the group name to <code>QBConfig.Server.Permissions<\/code> in <code>qb-core\/config.lua<\/code> and then adding the corresponding <code>add_principal<\/code> lines in <code>server.cfg<\/code>. Resources can then gate commands behind that specific ACE node.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For ban and kick management beyond the basic commands above, our <a href=\"https:\/\/xgamingserver.com\/blog\/fivem-ban-kick-management-guide\/\">FiveM ban and kick management guide<\/a> covers persistent ban lists and integrating moderation logging.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If your server is growing and you need better infrastructure, take a look at <a href=\"https:\/\/xgamingserver.com\/five-m-server-hosting\">managed FiveM server hosting<\/a> \u2014 it handles txAdmin provisioning, automatic restarts, and DDoS protection so you can focus on building your roleplay community instead of managing hardware.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">FAQ<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Why do my QBCore admin commands say &#8220;You don&#8217;t have permission to use this command&#8221;?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The most common cause is a missing or incorrect <code>add_principal<\/code> line in <code>server.cfg<\/code>. Double-check that you are using the exact identifier format (e.g., <code>identifier.license:<\/code> followed by your Rockstar licence hash with no spaces), that the identifier matches what the server sees for your connected session, and that you have restarted the server \u2014 not just hot-reloaded a resource \u2014 after editing <code>server.cfg<\/code>. You can verify your live identifiers in the txAdmin Players tab.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Where does \/noclip come from \u2014 qb-core or qb-adminmenu?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><code>\/noclip<\/code> is registered by <code>qb-adminmenu<\/code>, not the base <code>qb-core<\/code> resource. If the command does not exist on your server, confirm that both <code>menuv<\/code> and <code>qb-adminmenu<\/code> are ensured in <code>server.cfg<\/code> and that neither reported an error in the server console at startup. The dependency chain is: <code>menuv<\/code> must load first, then <code>qb-adminmenu<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What money types can I use with \/givemoney?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The default QBCore installation ships with <code>cash<\/code>, <code>bank<\/code>, and <code>crypto<\/code> as valid money type strings. Some servers add <code>blackmoney<\/code>. The authoritative list for your specific server is the <code>money<\/code> object inside <code>qb-core\/config.lua<\/code> \u2014 if you pass a type string that does not exist in that config, the command will silently fail without modifying the player&#8217;s balance.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Running a QBCore server means you will reach for admin commands constantly \u2014 handing a player their missing items, correcting a broken job assignment, spawning a test vehicle, or locking down the server before a restart. This cheat sheet covers every command built into qb-core and qb-adminmenu, plus the ACE permission block you need in [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":22048,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_gspb_post_css":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[142],"tags":[],"class_list":["post-22068","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-fivem"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v24.5 (Yoast SEO v26.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>QBCore Admin Commands Cheat Sheet 2026 | FiveM<\/title>\n<meta name=\"description\" content=\"Every QBCore admin command you need: giveitem, givemoney, setjob, \/car, \/noclip, ace permissions, and qb-adminmenu setup \u2014 verified against official docs.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"FiveM QBCore Admin Commands Cheat Sheet (2026)\" \/>\n<meta property=\"og:description\" content=\"Every QBCore admin command you need: giveitem, givemoney, setjob, \/car, \/noclip, ace permissions, and qb-adminmenu setup \u2014 verified against official docs.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"XGamingServer\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/web.facebook.com\/xgamingserver69\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-11T12:22:08+00:00\" \/>\n<meta name=\"author\" content=\"Hectar Carson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:site\" content=\"@xgamingserver\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Hectar Carson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/\"},\"author\":{\"name\":\"Hectar Carson\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d\"},\"headline\":\"FiveM QBCore Admin Commands Cheat Sheet (2026)\",\"datePublished\":\"2026-06-11T12:22:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/\"},\"wordCount\":974,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp\",\"articleSection\":[\"FiveM\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/\",\"name\":\"QBCore Admin Commands Cheat Sheet 2026 | FiveM\",\"isPartOf\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp\",\"datePublished\":\"2026-06-11T12:22:08+00:00\",\"description\":\"Every QBCore admin command you need: giveitem, givemoney, setjob, \/car, \/noclip, ace permissions, and qb-adminmenu setup \u2014 verified against official docs.\",\"breadcrumb\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/#primaryimage\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp\",\"width\":640,\"height\":360},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/xgamingserver.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"FiveM\",\"item\":\"https:\/\/xgamingserver.com\/blog\/category\/fivem\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"FiveM QBCore Admin Commands Cheat Sheet (2026)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#website\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"name\":\"XGamingServer\",\"description\":\"Dedicated Game Server Hosting\",\"publisher\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#organization\",\"name\":\"XGamingServer\",\"url\":\"https:\/\/xgamingserver.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"contentUrl\":\"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"XGamingServer\"},\"image\":{\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/web.facebook.com\/xgamingserver69\/\",\"https:\/\/x.com\/xgamingserver\",\"https:\/\/www.instagram.com\/xgamingserver\/\",\"https:\/\/www.linkedin.com\/company\/xgamingserver\/\",\"https:\/\/www.pinterest.com\/xgamingserver\/\",\"https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d\",\"name\":\"Hectar Carson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g\",\"caption\":\"Hectar Carson\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"QBCore Admin Commands Cheat Sheet 2026 | FiveM","description":"Every QBCore admin command you need: giveitem, givemoney, setjob, \/car, \/noclip, ace permissions, and qb-adminmenu setup \u2014 verified against official docs.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/","og_locale":"en_US","og_type":"article","og_title":"FiveM QBCore Admin Commands Cheat Sheet (2026)","og_description":"Every QBCore admin command you need: giveitem, givemoney, setjob, \/car, \/noclip, ace permissions, and qb-adminmenu setup \u2014 verified against official docs.","og_url":"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/","og_site_name":"XGamingServer","article_publisher":"https:\/\/web.facebook.com\/xgamingserver69\/","article_published_time":"2026-06-11T12:22:08+00:00","author":"Hectar Carson","twitter_card":"summary_large_image","twitter_creator":"@xgamingserver","twitter_site":"@xgamingserver","twitter_misc":{"Written by":"Hectar Carson","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/#article","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/"},"author":{"name":"Hectar Carson","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d"},"headline":"FiveM QBCore Admin Commands Cheat Sheet (2026)","datePublished":"2026-06-11T12:22:08+00:00","mainEntityOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/"},"wordCount":974,"commentCount":0,"publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp","articleSection":["FiveM"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/","url":"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/","name":"QBCore Admin Commands Cheat Sheet 2026 | FiveM","isPartOf":{"@id":"https:\/\/xgamingserver.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/#primaryimage"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp","datePublished":"2026-06-11T12:22:08+00:00","description":"Every QBCore admin command you need: giveitem, givemoney, setjob, \/car, \/noclip, ace permissions, and qb-adminmenu setup \u2014 verified against official docs.","breadcrumb":{"@id":"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/#primaryimage","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp","width":640,"height":360},{"@type":"BreadcrumbList","@id":"https:\/\/xgamingserver.com\/blog\/fivem-qbcore-admin-commands-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xgamingserver.com\/blog\/"},{"@type":"ListItem","position":2,"name":"FiveM","item":"https:\/\/xgamingserver.com\/blog\/category\/fivem\/"},{"@type":"ListItem","position":3,"name":"FiveM QBCore Admin Commands Cheat Sheet (2026)"}]},{"@type":"WebSite","@id":"https:\/\/xgamingserver.com\/blog\/#website","url":"https:\/\/xgamingserver.com\/blog\/","name":"XGamingServer","description":"Dedicated Game Server Hosting","publisher":{"@id":"https:\/\/xgamingserver.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/xgamingserver.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/xgamingserver.com\/blog\/#organization","name":"XGamingServer","url":"https:\/\/xgamingserver.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","contentUrl":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2020\/09\/logo.svg","width":"1024","height":"1024","caption":"XGamingServer"},"image":{"@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/web.facebook.com\/xgamingserver69\/","https:\/\/x.com\/xgamingserver","https:\/\/www.instagram.com\/xgamingserver\/","https:\/\/www.linkedin.com\/company\/xgamingserver\/","https:\/\/www.pinterest.com\/xgamingserver\/","https:\/\/www.youtube.com\/channel\/UCHnOtWxpzaL2r3jM9Jm40EQ"]},{"@type":"Person","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/561042c617869348e75abfe16a269f8d","name":"Hectar Carson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/xgamingserver.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1cbcd42dac6c5f21cb52dd64f03fd442250a15f7bb1ade04e23002eb5b384de5?s=96&d=mm&r=g","caption":"Hectar Carson"}}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/xgamingserver.com\/blog\/wp-content\/uploads\/2026\/06\/fivem-4.webp","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/22068","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/comments?post=22068"}],"version-history":[{"count":0,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/posts\/22068\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media\/22048"}],"wp:attachment":[{"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/media?parent=22068"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/categories?post=22068"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xgamingserver.com\/blog\/wp-json\/wp\/v2\/tags?post=22068"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}