Skip to content

๐Ÿ’ƒ FX-NIGHTCLUB โ€‹

Advanced nightclub system for RedM with dancer shows, private rooms, money system, camera system, and full framework compatibility.


๐Ÿ“ฆ INSTALLATION โ€‹

bash
ensure fx-nightclub

โ€ข Place the script inside resources/fx-nightclub โ€ข Add ensure fx-nightclub to your server.cfg โ€ข Restart your server


โš™๏ธ BASIC SETTINGS โ€‹

lua
Config.Language = "en"
Config.StartShowUseGameTime = false
Config.ForceShowLoop = 5

โ€ข Language โ†’ system language โ€ข StartShowUseGameTime โ†’ game time or real time (UTC) โ€ข ForceShowLoop โ†’ automatic show interval (minutes)


๐Ÿ’ฐ MONEY SYSTEM (DATA.JSON) โ€‹

json
{"money":1070.0,"ShowTimes":["02:15","02:20","02:25"]}

โ€ข money โ†’ total nightclub safe money โ€ข ShowTimes โ†’ scheduled show times โ€ข Used for automatic show system


๐ŸŽญ SHOW SYSTEM โ€‹

lua
Config.DefaultStageCenter = vector4(...)

โ€ข Defines main stage location โ€ข All dancers perform here โ€ข Central point of show system


lua
Config.Scene = {
  [1] = { dict = "...", name = "..."}
}

โ€ข Defines dance scenes โ€ข Supports animation sequences โ€ข Can include custom actions


๐Ÿ’ƒ DANCER SYSTEM โ€‹

lua
Config.Dancer = {
  [1] = {
    model = "cs_sworddancer",
    outfit = 3
  }
}

โ€ข Defines dancers โ€ข Each dancer has model, outfit, spawn position โ€ข Used in show system


lua
Config.Catalogues = {
  {
    model = "cs_sworddancer"
  }
}

โ€ข Defines selectable dancers โ€ข Used in menu system


๐ŸŽฌ SHOW CONTROL โ€‹

lua
Config.StartDanceCommand = "dancers"

โ€ข Command to start show โ€ข Can be restricted by job


lua
Config.UseCommandPermission = {
  ["saintdenissaloon"] = 0
}

โ€ข Restricts who can use command โ€ข Job + grade based


๐Ÿ’ธ MONEY RAIN SYSTEM โ€‹

lua
Config.RainMoney = 5

โ€ข Amount of money thrown during show โ€ข Adds immersion


๐Ÿค  SPAWN SYSTEM โ€‹

lua
Config.DefaultSpawnBackStage = vector4(...)

โ€ข Spawn location for dancers โ€ข Used before show starts


๐ŸŽฅ CAMERA SYSTEM โ€‹

lua
cameras = {
  [1] = { x = ..., y = ..., z = ... }
}

โ€ข Defines cinematic camera angles โ€ข Players can switch between cameras โ€ข Improves immersion


๐Ÿ›๏ธ PRIVATE ROOM SYSTEM โ€‹

lua
Config.SpecialDance = {
  Rooms = {
    ["Room 1"] = {
      price = 200
    }
  }
}

โ€ข Private dance rooms โ€ข Each room has price, coords, cameras โ€ข Supports exclusive interactions


lua
minutePriceMultiplier = 2.0

โ€ข Price per minute โ€ข Used for private dances


lua
isBussy = false

โ€ข Prevents multiple players using same room โ€ข Avoids conflicts


๐Ÿ’ƒ PRIVATE DANCERS โ€‹

lua
Dancers = {
  ["Sword Dancer"] = {
    model = "cs_sworddancer",
    price = 200
  }
}

โ€ข Defines dancers for private rooms โ€ข Each dancer has price and model โ€ข Can include custom animations


๐ŸŽฎ PLAYER EFFECT SYSTEM โ€‹

lua
Config.AfterServicePlayerEffects = function()

โ€ข Applies effects after service โ€ข Example โ†’ restore health/stamina โ€ข Fully customizable


๐ŸŽฏ HUD CONTROL โ€‹

lua
Config.HideHud = function()
Config.ShowHud = function()

โ€ข Controls UI visibility โ€ข Used during show โ€ข Prevents distractions


๐ŸŽฌ ANIMATION SYSTEM โ€‹

lua
Config.Animations = {
  ["kiss"] = {
    label = "Kiss"
  }
}

โ€ข Includes synced animations โ€ข Supports couple animations โ€ข Can be extended


๐Ÿ”จ PROP REQUIREMENTS โ€‹

lua
Config.Beds = { ... }
Config.ChairList = { ... }

โ€ข Required props for some animations โ€ข Example โ†’ bed / chair interactions


๐Ÿ”” NOTIFY SYSTEM โ€‹

lua
Notify({
  text = "Show started",
  type = "success"
})

โ€ข Framework-based notification system โ€ข Supports VORP / RSG / gm_core


โš ๏ธ IMPORTANT NOTES โ€‹

โ€ข data.json must exist โ€ข ShowTimes must be valid format โ€ข Rooms must not overlap โ€ข Dancers must have valid models โ€ข Camera positions must be correct


๐Ÿšจ COMMON MISTAKES โ€‹

โ€ข Show not starting โ†’ wrong time config โ€ข Room not working โ†’ already busy โ€ข Camera broken โ†’ wrong coords โ€ข No dancers โ†’ invalid model โ€ข Money issues โ†’ data.json not saving


๐Ÿ SUMMARY โ€‹

FX-NIGHTCLUB provides:

โ€ข Full nightclub system โ€ข Automatic show system โ€ข Private dance rooms โ€ข Camera & cinematic system โ€ข Money system โ€ข Dancer management


ยฉ Fixitfy Development

โšก Premium RedM scripts crafted with performance & quality in mind.