Advertisement
Stompy0410

Garry's Mod DarkRP create job example

Jun 7th, 2022
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.71 KB | None | 0 0
  1. TEAM_EXAMPLE = DarkRP.createJob("Example", {
  2.     color = Color(255, 0, 0, 255),----The color that shows on the scoreboard.
  3.     model = {""},---------------------The player model of the job.
  4.     description = [[Example]],--------Information about the job.
  5.     weapons = {""},---------------------What weapons you want them to have.
  6.     command = "Example",--------------EX: /Example ingame chat command
  7.     max = 900,------------------------How many player can be this job.
  8.     salary = 100,---------------------How much a player gets paid every so often.
  9.     admin = 0,------------------------Change this to 1 for true and 0 for no.
  10.     vote = false,
  11.     hasLicense = false,
  12.     candemote = false,
  13.     category = "",
  14. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement