Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.31 KB | None | 0 0
  1. TEAM_GUN = DarkRP.createJob("Job Name", { -- First part is the team name make it relevent to what the team is then in the "" You put the job name yo uwant
  2.     color = Color(255, 140, 0, 255), -- Any html color use a website to find them copy and paste
  3.     model = "models/player/monk.mdl", -- Model of your choice
  4.     description = [[]], -- Description of the class or brief over view of what it is
  5.     weapons = {}, -- The weapons the class will spawn with
  6.     command = "gundealer", -- The command to go to the job and set spawns ect... KEEP LOWER CASE ALWAYSS!!!! AND MAKE IT RELEVINTE TO THE JOB!!!!
  7.     max = 2, -- How many people can get on the job
  8.     salary = 50, -- How much they pay every 15 mins of being that job
  9.     admin = 0, -- IF you get admin for being this job ALWAYS 0
  10.     vote = false, -- If you can be voted off the job --- ALWAYS FALSE
  11.     hasLicense = false, -- If you have a gun license -- ALWAYS FALSE
  12.     category = "Citizens", -- What catagory they are in in the F4 menu can be dependent on who thet are exp Clone Troopers
  13.     PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  14.         ply:SetHealth(100) -- The health they get
  15.         ply:SetMaxHealth(100) -- MAx Health
  16.         ply:SetArmor(100) -- Armor
  17.         ply:SetWalkSpeed(30) -- Walk speed
  18.         ply:SetRunSpeed(80) -- run speed
  19.     end,
  20. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement