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. Gameplay
  3. 3D text

3D Text Builder

Draw text in world space: shop labels, prompts, warnings. Uses SetDrawOrigin so the maths stays short and the label stays steady.

Labels
#1
required

Formatting tokens work here: ~g~ green, ~r~ red, ~w~ back to white.

required

x, y, z. Aim for roughly chest height.

optional

0.35 is a readable label at a few metres.

Add as many as you need.

optional

Game font id. 4 is the condensed one most scripts use.

optional

Base text colour. Formatting tokens override it per word.

optional

0 to 255.

optional

Draws a translucent rectangle behind the text so it stays readable against a bright sky.

optional

Metres. Beyond this the loop sleeps.

config.lua and client.lua inside your resource, both listed in fxmanifest.lua.
1-- Generated with devtoolsgg.com2-- 3D text configuration34Config = Config or {}56Config.DrawDistance = 107Config.Font = 48Config.Color = { 255, 255, 255, 255 }910Config.Texts = {11    {12        text = "Press ~g~E~w~ to open",13        coords = vec3(-254, -971, 31.2),14        scale = 0.35,15    },16}17
lua17 lines, 297 characters

Related tools

BlipsMarkersDiscordDiscord logs