{"id":199002,"date":"2025-09-22T07:58:34","date_gmt":"2025-09-22T05:58:34","guid":{"rendered":"https:\/\/fivemx.com\/?p=199002"},"modified":"2025-12-23T16:43:21","modified_gmt":"2025-12-23T15:43:21","slug":"fivem-so-entfernen-sie-das-fadenkreuz","status":"publish","type":"post","link":"https:\/\/fivemx.com\/de\/fivem-how-to-remove-the-crosshair\/","title":{"rendered":"FiveM: So entfernt man das Fadenkreuz (Spieler &amp; Server \u2026)"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Want a cleaner, more realistic aim in GTA RP? This guide shows <strong>players<\/strong> and <strong>server owners<\/strong> exactly how to remove (or strictly control) the crosshair in FiveM\u2014whether it\u2019s the default GTA reticle, a vMenu overlay, or a HUD\/script crosshair.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">TL;DR<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Players:<\/strong> Try <strong>ESC \u2192 Settings \u2192 Display \u2192 Reticule: Off<\/strong>. If your server uses <strong>vMenu<\/strong>, open it and disable the <strong>Crosshair<\/strong> toggle. If a custom HUD shows a crosshair, ask staff to disable it.<\/li>\n\n\n\n<li><strong>Server Owners:<\/strong> The most reliable method is to <strong>hide HUD component 14 (reticle) every frame<\/strong>. See the copy\u2011paste resource below. You can also disable vMenu\u2019s crosshair and turn off crosshair options in your HUD\/UI resources.<\/li>\n<\/ul>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Pro tip: Keep the scope for marksman\/sniper rifles but disable all other crosshairs for a fair, competitive feel in RP and PvP.<\/p>\n<\/blockquote>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">For Players<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1) Turn off the GTA reticle<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If your server doesn\u2019t force a crosshair overlay:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Press <strong>ESC<\/strong> \u2192 <strong>Settings<\/strong> \u2192 <strong>Display<\/strong>.<\/li>\n\n\n\n<li>Set <strong>Reticule<\/strong> to <strong>Off<\/strong>.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">2) Disable vMenu crosshair (if your server uses vMenu)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Open <strong>vMenu<\/strong> (key varies by server), then look for <strong>Weapon\/Misc Settings \u2192 Crosshair<\/strong> and switch it <strong>Off<\/strong>. If you can\u2019t find it, your server might have locked the option\u2014ask an admin.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3) Check your mods\/overlays<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Some reshade presets, recording tools, or 3rd\u2011party overlay apps can draw a dot on your screen. Disable those overlays if the crosshair persists.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">For Server Owners &amp; Devs<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Below are robust, production\u2011ready approaches that don\u2019t rely on client cooperation.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Option A \u2014 Global removal (recommended)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Create a small standalone resource that hides the reticle every frame. This blocks GTA\u2019s default dot even when aiming.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>fxmanifest.lua<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">fx_version 'cerulean'\ngame 'gta5'\nlua54 'yes'\n\nauthor 'FiveMX.com'\ndescription 'Hide the default GTA reticle (crosshair)'\nversion '1.0.0'\n\nclient_scripts {\n  'client\/*.lua'\n}\n<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>client\/hide_crosshair.lua<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">-- Hide the standard crosshair every frame\nCreateThread(function()\n    while true do\n        Wait(0)\n        -- 14 = RETICLE\n        HideHudComponentThisFrame(14)\n    end\nend)\n<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Drop the folder into your <code>resources<\/code> and <strong>ensure<\/strong> it in <code>server.cfg<\/code>:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">ensure hide-crosshair\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Option B \u2014 Keep scopes, remove everything else<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If you want actual sniper\/marksman scopes to remain visible, allow them and hide all other crosshairs:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>client\/hide_crosshair_scoped.lua<\/strong><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">local scoped = {\n    [`WEAPON_SNIPERRIFLE`] = true,\n    [`WEAPON_HEAVYSNIPER`] = true,\n    [`WEAPON_HEAVYSNIPER_MK2`] = true,\n    [`WEAPON_MARKSMANRIFLE`] = true,\n    [`WEAPON_MARKSMANRIFLE_MK2`] = true,\n}\n\nCreateThread(function()\n    while true do\n        Wait(0)\n        local ped = PlayerPedId()\n        local weapon = GetSelectedPedWeapon(ped)\n        if not scoped[weapon] then\n            HideHudComponentThisFrame(14)\n        end\n    end\nend)\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Option C \u2014 Allow admins to toggle<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Give staff a quick toggle for testing or special events.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">local crosshairDisabled = true\n\nRegisterCommand('togglecrosshair', function()\n    crosshairDisabled = not crosshairDisabled\n    if crosshairDisabled then\n        TriggerEvent('chat:addMessage', {args = {'^2Crosshair', 'disabled'}})\n    else\n        TriggerEvent('chat:addMessage', {args = {'^3Crosshair', 'enabled'}})\n    end\nend, true) -- true = restrict to admins via ACE\n\nCreateThread(function()\n    while true do\n        Wait(0)\n        if crosshairDisabled then\n            HideHudComponentThisFrame(14)\n        end\n    end\nend)\n<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Then lock the command in <strong>permissions.cfg<\/strong> with ACE:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">add_ace group.admin command.togglecrosshair allow\nadd_ace group.moderator command.togglecrosshair allow\n<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Option D \u2014 If you use vMenu<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>UI toggle:<\/strong> Ask players to disable <strong>Crosshair<\/strong> in vMenu themselves.<\/li>\n\n\n\n<li><strong>Enforce via script:<\/strong> Even if vMenu is present, still run <strong>Option A<\/strong> to force removal server\u2011wide.<\/li>\n\n\n\n<li><strong>Permissions:<\/strong> If your vMenu build exposes per\u2011feature permissions for crosshair, deny that permission to non\u2011staff (implementation differs by build; enforcing Option A is simpler and universal).<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Option E \u2014 If a HUD\/UI resource draws a crosshair<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Some HUDs (health\/armor minimals, PvP UIs) render their own crosshair element.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Check the resource\u2019s <strong>config.lua<\/strong> (or JSON) for <code>crosshair = true\/false<\/code> flags.<\/li>\n\n\n\n<li>If it\u2019s HTML\/CSS based, search the <code>html\/<\/code> folder for <code>crosshair<\/code> and remove\/disable the element or set: <code>.crosshair { display: none !important; }<\/code><\/li>\n\n\n\n<li>If the resource updates the reticle via JavaScript (drawn on canvas), comment out the render call.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">Troubleshooting<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Crosshair still appears only on certain weapons:<\/strong> You likely have a HUD overlay or weapon\u2011specific UI. Search your resources for \u201ccrosshair\u201d, \u201creticle\u201d, or \u201cdot\u201d.<\/li>\n\n\n\n<li><strong>Scoped overlay disappeared too:<\/strong> Use <strong>Option B<\/strong> so scoped rifles keep their scope.<\/li>\n\n\n\n<li><strong>Performance concerns:<\/strong> The hide call is <strong>0.00\u20130.01ms<\/strong> at idle on modern servers. If you\u2019re worried, profile it with <strong>Resmon<\/strong>. See our guide: <a href=\"https:\/\/fivemx.com\/how-to-use-resmon-in-fivem-optimize-resources\/\">How To Use Resmon In FiveM<\/a>.<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">FAQ<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Does this break aim\u2011assist or first\u2011person aim?<\/strong><br>No. You\u2019re only hiding the on\u2011screen reticle. Player input\/aim mechanics stay the same.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Will this work on ESX, QBCore, or standalone?<\/strong><br>Yes\u2014this is framework\u2011agnostic.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Can I enforce this only for PvP arenas?<\/strong><br>Yes. Wrap the <code>HideHudComponentThisFrame(14)<\/code> call with zone checks or job checks. Example: only hide inside your arena dimension, or only for certain jobs\/teams.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">Copy\u2011Paste: Minimal Resource Structure<\/h2>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">resources\/\n\u2514\u2500 hide-crosshair\/\n   \u251c\u2500 fxmanifest.lua\n   \u2514\u2500 client\/\n      \u2514\u2500 hide_crosshair.lua\n<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Ensure it in <code>server.cfg<\/code> and restart the server.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">Related Guides (Internal Links)<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/fivemx.com\/vmenu\/\">vMenu (overview &amp; latest download)<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/fivemx.com\/fivem-hud\/\">FiveM HUDs &amp; UI<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/fivemx.com\/how-to-show-fps-in-fivem-performance-boost\/\">How to Show FPS in FiveM (+ Performance Boost)<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/fivemx.com\/best-fivem-settings\/\">Best FiveM Settings<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/fivemx.com\/how-to-clear-fivem-cache\/\">How to Clear FiveM Cache<\/a><\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\">Suggested SEO Snippets<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Title tag:<\/strong> <em>How to Remove the Crosshair in FiveM (Players &amp; Server Owners)<\/em><\/li>\n\n\n\n<li><strong>Meta description:<\/strong> <em>Remove the GTA V\/FiveM crosshair the right way. Player steps, vMenu settings, and a copy\u2011paste resource for server owners\u2014keep sniper scopes, ditch the dot.<\/em><\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Need this tailored to your framework (ESX\/QBCore) or your HUD? Tell us which resource you use and we\u2019ll add the exact steps.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Want a cleaner, more realistic aim in GTA RP? This guide shows players and server owners exactly how to remove (or strictly control) the crosshair in FiveM\u2014whether it\u2019s the default GTA reticle, a vMenu overlay, or a HUD\/script crosshair. TL;DR Pro tip: Keep the scope for marksman\/sniper rifles but disable all other crosshairs for a [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":199003,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2340,1902,1899],"tags":[],"class_list":["post-199002","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-lua-scripting","category-fivem-related","category-tutorials"],"blocksy_meta":[],"_links":{"self":[{"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/posts\/199002","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/comments?post=199002"}],"version-history":[{"count":0,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/posts\/199002\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/media\/199003"}],"wp:attachment":[{"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/media?parent=199002"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/categories?post=199002"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/tags?post=199002"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}