devtoolsgg.com
Guides
GuidesFiveMFiveMGarry's ModMinecraftShared
FiveMFiveM

Server & infrastructure

  • server.cfg
  • fxmanifest
  • ACE permissions
  • Scaffolder

Frameworks

  • Jobs
  • Items

Gameplay

  • Blips
  • Markers
  • 3D text
  • DiscordDiscord logs

Security

  • Backdoor scanner

Reference lists

  • Blip sprites
  • Markers
  • Checkpoints
  • HUD colours
  • Controls
  • Text formatting
  • Vehicles
  • Ped models
  • Weapons
  • Vehicle colours
  • Radio stations
devtoolsgg.com

Generators for game server owners

Platforms

  • FiveM
  • Garry's Mod
  • Minecraft
  • Shared

Resources

  • Home
  • llms.txt

Social

  • Coming soon.

© 2026 devtoolsgg.com

Not affiliated with, endorsed by or associated with Cfx.re, Rockstar Games, Facepunch Studios, Mojang, Microsoft or Valve. All trademarks belong to their respective owners.

  1. FiveM
  2. Server & infrastructure
  3. Scaffolder

Resource Scaffolder

Generate a complete, working resource folder (manifest, config, client, server, optional NUI and SQL) wired for your framework with server-side permission checks already in place.

required

Lowercase, no spaces. Becomes the resource id and the SQL table name.

required

Used in notifications and the NUI header.

optional

Goes into fxmanifest.lua.

required

Adds the right import line and dependencies.

optional

One line about what the resource does.

optional

Adds a command whose permission is checked server-side, not on the client.

optional

Adds a sphere zone so players interact by looking at it.

optional

Adds html/index.html, style.css and script.js with focus handling and Escape to close.

optional

Adds oxmysql, a SQL migration and a parameterised query example.

my_resource/fxmanifest.lua

Fill in the required fields to get working output.

1-- Generated with devtoolsgg.com2fx_version "cerulean"3game "gta5"4lua54 "yes"56name "my_resource"7description "A brand new FiveM resource"8version "1.0.0"910shared_scripts {11    "@ox_lib/init.lua",12    "config.lua",13}1415client_scripts {16    "client/main.lua",17}1819server_scripts {20    "server/main.lua",21}2223dependencies {24    "ox_lib",25    "ox_target",26}27
lua27 lines, 353 characters

Related tools

server.cfgfxmanifestACE permissions