Skip to main content
  • Instant digital delivery
  • Lifetime updates on selected products
  • Trusted by server owners
FiveMX
Shop
Full ServersBundlesNew releases
FiveMX

Start building your server today.

Curated FiveM resources, instant delivery, free starter mods, and practical guides in one calm marketplace.

Browse the shopsupport@fivemx.com

Shop

  • Shop
  • FiveM Mods
  • All Products
  • Free Mods
  • Best Scripts & Mods
  • FiveM Scripts

Frameworks

  • QBCore Scripts
  • ESX Scripts
  • QBox
  • Standalone

Community

  • Blog
  • Support
  • Creators
  • Affiliate

Legal

  • Privacy Policy
  • Terms of Service
  • Refund Policy
  • Digital Delivery
  • Cookie Policy
  • GDPR Compliance
  • DMCA
  • Imprint
  • Editorial Policy

Server Templates

  • QBCore Server Template
  • ESX Server Template
  • NoPixel Server Template
  • Server Packs
  • Free Server Templates
  • Tebex Alternative
© 2026 FiveMX. All rights reserved.·FiveMX is not affiliated with Rockstar Games, Take-Two Interactive, or CFX.re. All trademarks are property of their respective owners.
DiscordDocs
  1. Home
  2. Shop
  3. Police Scripts

3 product images available.

Police Scripts
Compatibility:
ESX

Premium MultiJob

Review process
$18.00

Secure Checkout

Cards, Apple Pay, Google Pay, iDEAL/Wero, Bancontact, EPS, Przelewy24, and optional Crypto where available via Stripe.

Instant file access after paymentSupport and refund policy shown before checkout
Ask support before buyingRead refund policy
Instant Access
SSL Encrypted
Cards, wallets, bank redirects
Frameworksesx
Setup

Requires a FiveM server, esx, access to server resources, and permission to restart the resource after configuration.

RequirementsPublished on this page
PreviewAvailable

Description

https://www.youtube.com/watch?v=cVg0WnI1avw
Config = {}

Config.JobMenuCommand = 'jobs' -- Command you want for opening job menu(/jobs default)
Config.JobMenuKey = 'F5' -- Configure to whichever desired key. Set to false if undesired

Config.MaxJobs = 4 -- Maximum jobs a player can have in their menu(Set to false to disable limit)

Config.OffDutyJob = {-- Job it switches you to while off duty.
    name = 'unemployed',
    grade = 0
}

Config.blacklist = { -- Jobs you don't want awarded to menu when given to player(I.e prisoner)
--  ['JOB_HERE'] = true,
    ['prisoner'] = true,
}

Config.BossMenus = { -- Configurable boss menus(Good for adding boss menus for any job that has a 'boss' grade)
    enabled = true, -- Easily disable completely by switching to false
    marker = { -- Marker configuration
        type = 27,
        color = {r = 50, g = 50, b = 204},
        drawDistance = 10
    },
    locations = { -- Add/edit boss menu locations for defined jobs(Jobs must have a 'boss' grade to access menu)
    --  { coords = vector3(XX.XX, XX.XX, XX.XX), job = 'JOB_NAME_HERE' }, -- EXAMPLE
        {coords = vector3(-576.1141, -936.6058, 28.69531-0.9), job = police, label = POLICE},
        {coords = vector3(334.95, -594.01, 43.28-0.9), job = ambulance, label = EMS},
    }
}

Strings = {
    -- All strings for language change purposes

    -- Notifications
    ['hired_header'] = 'You've been Hired!',
    ['hired_content'] = 'A job has been awarded in your job menu.',
    ['alr_clocked'] = 'Already Clocked In',
    ['alr_clocked_desc'] = 'You are already clocked in to this job.',
    ['clocked_out'] = 'Clocked Out',
    ['clocked_out_desc'] = 'You have successfully clocked out.',
    ['deleted'] = 'Deleted',
    ['deleted_desc'] = 'Job successfully deleted.',
    ['no_perm'] = 'No Permision',
    ['no_perm_desc'] = 'You are not authorized to access this!',
    ['invalid_amount'] = 'Invalid Amount',
    ['invalid_amount_desc'] = 'Please input a valid amount!',
    ['deposit_successful'] = 'Deposit Successful',
    ['deposit_successful_desc'] = 'You have successfully deposited $%s in to the business account',
    ['lacking_funds'] = 'Lacking Funds',
    ['lacking_funds_desc'] = 'You don't have enough cash for this transaction',
    ['withdrawal_funds'] = 'Withdrawal Funds',
    ['withdrawal_successful'] = 'Withdrawal Successful',
    ['withdrawal_successful_desc'] = 'You have successfully withdrawaled $%s from the business account',
    ['success'] = 'Success',
    ['success_desc'] = 'Action Successful!',
    ['invalid_id'] = 'Invalid ID',
    ['invalid_id_desc'] = 'Player not found with ID entered',
    ['hire_success'] = 'Hire Successful',
    ['hire_success_desc'] = 'You have successfully hired %s',
    ['bonus_success_desc'] = 'You successfully send %s a $%s bonus',
    ['bonus_title'] = 'Bonus Received!',
    ['bonus_msg'] = 'You were granted a $%s employment bonus from %s.',
    ['no_money'] = 'Insufficient Funds',
    ['no_money_desc'] = 'There are not enough funds for this action',
    ['delete_confirm'] = 'Caution!',
    ['delete_confirm_desc'] = 'Are you sure you wish to delete this job?',
    ['fire_confirm_desc'] = 'Are you sure you wish to fire this employee?',
    ['cancelled'] = 'Cancelled',
    ['cancelled_desc'] = 'You cancelled your previous action',
    ['fired'] = 'Employee Terminated',
    ['fired_desc'] = 'You successfully fired the employee',

    --Main Menu
    ['offduty_header'] = 'Off Duty',
    ['clockedin_job'] = 'Current Job:',
    ['grade_label'] = 'Position:',
    ['no_jobs'] = 'No Saved Jobs!',
    ['nojob_desc'] = 'Try applying at local businesses',
    ['jobs_menu'] = 'Jobs Menu',
    ['go_back'] = '< Go Back',

    -- Job Clock In / Out / Delete Menu
    ['clock_in'] = 'Clock In',
    ['clock_out'] = 'Clock Out',
    ['delete_job'] = 'Delete Job',

    -- Boss Menu
    ['employee_list'] = 'Employee List',
    ['employee_count'] = 'You currently have %s employees',
    ['society_funds'] = 'Manage Funds',
    ['society_funds_desc'] = 'Total Funds:',
    ['currency'] = '$',
    ['deposit_funds'] = 'Deposit Funds',
    ['withdrawal_funds'] = 'Withdrawal Funds',
    ['amount'] = 'Amount:',
    ['job_position'] = 'Position:',
    ['job_salary'] = 'Salary:',
    ['edit_rank'] = 'Promote/Demote',
    ['edit_rank_desc'] = 'Position: %s | Salary: $%s',
    ['fire_employee'] = 'Terminate Employment',
    ['employee_list'] = 'Employees',
    ['current_position'] = '(Current)',
    ['hire_employee'] = 'Hire Employee',
    ['hire_employee_desc'] = 'Hire someone by ID',
    ['player_id'] = 'Player's ID:',
    ['give_bonus'] = 'Give Bonus',
    ['give_bonus_desc'] = 'Send an employee a bonus',
    ['open_boss_menu_3d'] = '[~b~E~w~] Access Boss Menu'
}

Related FiveM Medic Scripts

  • Pillbox Hill Hospital Center MLO V5 (47 rooms)
  • Benzz NHS Ambulance Station
  • AI Medics System
  • FiveM Ambulance Job (ESX/QBCore)

Installation notes

Requires a FiveM server, esx, access to server resources, and permission to restart the resource after configuration.
Installation notes
Requires a FiveM server, esx, access to server resources, and permission to restart the resource after configuration.

Buy this when it saves setup time

Use this checklist to decide quickly whether the resource fits your current server build, framework, and support expectations.

Server-owner payoff

Premium MultiJob is positioned to reduce Police Scripts instead of making you rebuild the same system from scratch.

Compatibility

Works with esx. Check the requirements block before adding it to a live stack.

Purchase confidence

Instant download, Stripe checkout, support access, and refund policy context are shown before payment.

Decision assets

Requirements, Preview video, Product Q&A

Product fit, setup, and proof at a glance

Use the published facts on this page to confirm whether Premium MultiJob matches your server before checkout.

Compatibility

Frameworks
ESX
Category
Police Scripts

Setup & requirements

Install flow
Download → resources folder → ensure in server.cfg
Requirements
Published on this page
File size
11.38 KB

Proof & buyer questions

Reviews
No reviews yet
Answered Q&A
Ask before buying

Only the facts published on this page should be treated as confirmed. If you need more detail, review the description, requirements, changelog, reviews, and product Q&A before checkout.

Compatibility:

Premium MultiJob

$18.00

Secure Checkout

Cards, Apple Pay, Google Pay, iDEAL/Wero, Bancontact, EPS, Przelewy24, and optional Crypto where available via Stripe.

Instant file access after paymentSupport and refund policy shown before checkout
Ask support before buyingRead refund policy
Instant Access
SSL Encrypted
Cards, wallets, bank redirects
Frameworksesx
Setup

Requires a FiveM server, esx, access to server resources, and permission to restart the resource after configuration.

RequirementsPublished on this page
PreviewAvailable
Description
Requirements
Preview video

Key Features

  • Multi-Job Support

    Players can hold up to 4 jobs simultaneously in their job menu, with configurable maximum job limit

  • Job Menu Command and Keybind

    Access jobs via /jobs command or F5 key, both fully configurable

  • Clock In/Out System

    Players can clock in and out of jobs with notifications and status tracking

  • Configurable Boss Menus

    Boss menus with marker locations for jobs with boss grades, including Police and EMS positions

  • Job Blacklist System

    Prevents specific jobs like prisoner from being awarded to players through the menu

Frequently Asked Questions

Police Scripts
ESX
Review process

Related Products

$21.00
$8.00
$7.00
$7.00

Related Tutorials & Guides

Learn more about setting up, configuring, and using this type of resource.

ESX Admin Commands List: /setjob, /car, /dv, /setgroup & More

ESX Admin Commands List: /setjob, /car, /dv, /setgroup & More

A practical ESX admin commands list for FiveM: user commands, admin commands, aliases, arguments, examples, and permission notes for es_extended.

ESX vs QBCore vs QBOX: Technical Framework Comparison 2026

ESX vs QBCore vs QBOX: Technical Framework Comparison 2026

Choosing a framework is the single most consequential decision when building a FiveM server. It determines which scripts you can use, how your developers write code, the…

ESX Legacy Guide 2026: Is It Still Worth Using?

ESX Legacy Guide 2026: Is It Still Worth Using?

ESX is the original FiveM roleplay framework, and despite newer alternatives, it remains one of the most widely used frameworks in 2026.

Continue Building Your FiveM Server

Use this product as part of a larger setup. Explore related categories, alternative frameworks, premium bundles, and free companion downloads.

Explore EMS ScriptsExplore Admin ToolsBrowse all scriptsPolice Scripts scriptsesx scriptsTry QBCore insteadTry QBox insteadFree FiveM modsCompare bundles
Police System CAD/MDT

Police System CAD/MDT

Core Multiple Jobs

Core Multiple Jobs

Police Badge Show

Police Badge Show

Policejob Animations

Policejob Animations