NAT2K15 Development
DiscordStoreConfigGithubStatus Page
  • NAT2K15 Documentation
  • Paid Scripts
    • FiveM Framework
      • 💻Choose your hosting
        • 💻Windows Hosting
          • 🛢️MySQL Installation (xampp)
          • 🛢️MySQL Connection String
          • 👨‍💻Installing Framework
        • 🐧Linux Hosting
          • 🛢️MySQL Installation
          • 🛢️MySQL Connection String
          • 👨‍💻Installing Framework
        • 🎮Panel Hosting
      • 📋Framework Addons
        • FiveM Scoreboard
        • ☎️Framework 911 (paid)
        • 📲NPWD X Framework
          • 📋Editing NPWD Config
          • 🧠Installing npwd-framework
      • ✒️Change Logs
      • ✍️Developers Usage
        • Client Side Exports
        • Server Side Exports
      • ❌Frequent Issues
    • Personal Vehicle V2
      • Discord Bot Token
      • Installing Dependency
      • Editing the Config
    • FiveM Discord Whitelist
      • Discord Bot Token
      • Edit the config
  • FiveM vMenu Modification
  • FiveM Vehicle & Weapon Management System
    • Installing Dependency
    • Configuration Guide
  • FiveM Admin Zone
  • Paid Bots
    • Ticket Bot V2
      • 💻Windows Hosting Guide
        • 🛢️MySQL Installation (xampp)
        • 👨‍💻Installing Node.js
    • Multi Server Control
      • 💻Windows Hosting Guide
        • 👨‍💻Installing Node.js
        • 🚂Starting The Bot
Powered by GitBook
On this page
  • Setup
  • Configuration Documentation
  • Global Configuration
  • UI Settings (config.uiSettings)
  • Known Issues

Was this helpful?

Edit on GitHub
  1. Paid Scripts
  2. FiveM Framework
  3. 📋Framework Addons

FiveM Scoreboard

Slick FiveM scoreboard designed to work with our framework. level up your server with a clean design.

Setup

  1. Extract the zip folder into your resource folder and name the script framework-scoreboard

  2. Edit the config to your liking a breakdown of the config will be below.

  3. Start the resource after the framework

  4. Load in and test 😄

ensure framework
ensure framework-scoreboard

Configuration Documentation

config = {}
config.delay = 1500 -- Delay in milliseconds between each check
config.key = 27 -- Key to open the menu

config.uiSettings = {
    serverName = "NAT RP - {playercount}", -- Possible varibles {playercount}
    banner = {
        enabled = true,
        url = "https://i.ibb.co/hFRM77G/faxsstore.png"
    },
    ping = {
        enabled = false
    }
}

Global Configuration

  • config.delay: Sets the delay in milliseconds between each check.

    • Type: Integer

    • Default: 1500

  • config.key: Specifies the key used to open the menu.

    • Type: Integer

    • Default: 27 (This usually corresponds to the 'ESC' key)

UI Settings (config.uiSettings)

The config.uiSettings table contains settings related to the user interface.

Server Name (serverName)

  • serverName: The name of the server displayed in the UI.

    • Type: String

    • Default: "NAT RP - {playercount}"

    • Description: You can use the {playercount} variable to dynamically display the current number of players.

Banner (banner)

  • banner.enabled: Enables or disables the display of a banner in the UI.

    • Type: Boolean

    • Default: true

  • banner.url: The URL of the image used as the banner.

    • Type: String

    • Default: "https://i.ibb.co/hFRM77G/faxsstore.png"

Ping (ping)

  • ping.enabled: Enables or disables the display of the ping information in the UI.

    • Type: Boolean

    • Default: false

Known Issues

if you have changed the default name of the framework to lets say rp-framework. You will need to modify the server.lua.

  1. Go into Framework-scoreboard/server/server.lua

  2. Edit the framework to match your resource name. Only edit what's in the "framework"

PreviousFramework AddonsNextFramework 911 (paid)

Last updated 8 months ago

Was this helpful?

Framework-scoreboard/server/server.lua
Page cover image