CS_SCOREBOARD

A customizable server scoreboard. Displays online players, jobs, IDs, and works with multi-character setups.


Installation

start cs_scoreboard

Configuration

Config.lua

chevron-rightConfig.luahashtag

Controls general behavior of the scoreboard:

  • OnlyJobs – true / false – If true, only displays the number of players on configured jobs (no names or IDs).

  • multiCharacter – true / false – Set to true if using esx_legacy with multi-character support.

  • OpenKey – Key to open the scoreboard. Example: "F11".

chevron-rightConfig.jshashtag

Controls the UI and player/job display:

  • scoreBoardLabel – Big title of the scoreboard. Example: "CoreServices".

  • playerCountLabel – Label for player count. Example: "PLAYERS".

  • showPlayerCount – true / false – Display total players online.

  • showIDs – true / false – Display player IDs for everyone.

  • showJobs – true / false – Display online jobs.

Jobs Configuration

Add the jobs to be displayed on the scoreboard:

const jobs = [
    {name: "police", label: "LSPD"},
    {name: "ambulance", label: "LSMD"},
    {name: "mechanic", label: "ACLS"},
    {name: "taxi", label: "TAXI"}
];
  • name – The real job name in the server database.

  • label – Display name for the UI.


chevron-rightNoteshashtag
  • Works with ESX and multi-character setups.

  • OnlyJobs mode hides player names and IDs, showing just job counts.

  • Fully customizable UI via config.js and HTML files.


Support

If you have any further questions, open a ticket on our discord server: discord.gg/core-servicesarrow-up-right

Last updated