• Job not working i don't know why
    11 replies, posted
All my other jobs are working besides this one i get this error [ERROR] gamemodes/policerp/gamemode/libraries/simplerr.lua:530: [ERROR] Lua is unable to understand file "darkrp_customthings/jobs.lua" because its author made a mistake around line number 37. The best help I can give you is this: Right before the 'TEAM_PROB2', Lua expected to read an '='-sign, but it didn't. Hints: - Did you simply forget the '='-sign? - Did you forget a comma? - Is this supposed to be a local variable? ------- End of Simplerr error ------- I looked in the lua file and this is the job that is on line 37 TEAM_PROB2 = DarkRP.createJob("Police Probationary Officer", {     color = Color(34, 85, 85, 255),     model = {"models/kerry/player/police_usa/male_01.mdl", "models/kerry/player/police_usa/male_02.mdl", "models/kerry/player/police_usa/male_03.mdl", "models/kerry/player/police_usa/male_04.mdl", "models/kerry/player/police_usa/male_05.mdl",   "models/kerry/player/police_usa/male_06.mdl", "models/kerry/player/police_usa/male_07.mdl", "models/kerry/player/police_usa/male_08.mdl", "models/kerry/player/police_usa/male_09.mdl"},     description = [[Follow all rules in the !motd]],     weapons = {"realrbn_tazer_mr", "m9k_glock", "bb_m4a1", "weapon_ticketbook", "weapon_r_handcuffs", "door_ram", "itemstore_pickup"},     command = "prob2",     max = 0,     salary = 250,     admin = 0,     vote = false,     hasLicense = true,     candemote = true,     sortorder = 2,     category = "Police",     PlayerSpawn = function(ply)         ply:SetArmor(150)     end }) This is the whole jobs.lua file --[[--------------------------------------------------------------------------- DarkRP custom jobs --------------------------------------------------------------------------- This file contains your custom jobs. This file should also contain jobs from DarkRP that you edited. ​ Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua       Once you've done that, copy and paste the job to this file and edit it. ​ The default jobs can be found here: https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua ​ For examples and explanation please visit this wiki page: http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields ​ Add your custom jobs under the following line: ---------------------------------------------------------------------------]] TEAM_PROB1 = DarkRP.createJob("Police Cadet", {     color = Color(34, 85, 85, 255),     model = {"models/kerry/player/police_usa/male_01.mdl"},     description = [[Follow all rules in the !motd]],     weapons = {"realrbn_tazer_mr", "itemstore_pickup", "weapon_ticketbook"},     command = "cdt",     max = 0,     salary = 0,     admin = 0,     vote = false,     hasLicense = true,     candemote = true,     sortorder = 1,     category = "Police",     PlayerSpawn = function(ply)         ply:SetArmor(150)     end }) ​ TEAM_PROB2 = DarkRP.createJob("Police Probationary Officer", {     color = Color(34, 85, 85, 255),     model = {"models/kerry/player/police_usa/male_01.mdl", "models/kerry/player/police_usa/male_02.mdl", "models/kerry/player/police_usa/male_03.mdl", "models/kerry/player/police_usa/male_04.mdl", "models/kerry/player/police_usa/male_05.mdl",   "models/kerry/player/police_usa/male_06.mdl", "models/kerry/player/police_usa/male_07.mdl", "models/kerry/player/police_usa/male_08.mdl", "models/kerry/player/police_usa/male_09.mdl"},     description = [[Follow all rules in the !motd]],     weapons = {"realrbn_tazer_mr", "m9k_glock", "bb_m4a1", "weapon_ticketbook", "weapon_r_handcuffs", "door_ram", "itemstore_pickup"},     command = "prob2",     max = 0,     salary = 250,     admin = 0,     vote = false,     hasLicense = true,     candemote = true,     sortorder = 2,     category = "Police",     PlayerSpawn = function(ply)         ply:SetArmor(150)     end }) ​ TEAM_CORP = DarkRP.createJob("Police Corporal", {     color = Color(34, 85, 85, 255),     model = {"models/kerry/player/police_usa/male_01.mdl", "models/kerry/player/police_usa/male_02.mdl", "models/kerry/player/police_usa/male_03.mdl", "models/kerry/player/police_usa/male_04.mdl", "models/kerry/player/police_usa/male_05.mdl", "models/kerry/player/police_usa/male_06.mdl", "models/kerry/player/police_usa/male_07.mdl", "models/kerry/player/police_usa/male_08.mdl", "models/kerry/player/police_usa/male_09.mdl"},     description = [[Follow all rules in the !motd]],     weapons = {"realrbn_tazer_mr", "m9k_glock", "bb_m4a1", "weapon_ticketbook", "bb_famas", "door_ram", "weapon_r_handcuffs", "bb_p90", "vc_spikestrip_wep", "itemstore_pickup"},     command = "corp",     max = 0,     salary = 250,     admin = 0,     vote = false,     hasLicense = true,     candemote = true,     sortorder = 3,     category = "Police",     PlayerSpawn = function(ply)         ply:SetArmor(150)     end }) ​ TEAM_SERG = DarkRP.createJob("Police Sergeant", {     color = Color(34, 85, 85, 255),     model = {"models/kerry/player/police_usa/male_01.mdl", "models/kerry/player/police_usa/male_02.mdl", "models/kerry/player/police_usa/male_03.mdl", "models/kerry/player/police_usa/male_04.mdl", "models/kerry/player/police_usa/male_05.mdl", "models/kerry/player/police_usa/male_06.mdl", "models/kerry/player/police_usa/male_07.mdl", "models/kerry/player/police_usa/male_08.mdl", "models/kerry/player/police_usa/male_09.mdl"},     description = [[Follow all rules in the !motd]],     weapons = {"realrbn_tazer_mr", "m9k_glock", "bb_m4a1", "weapon_r_handcuffs", "weapon_ticketbook", "door_ram", "bb_famas", "bb_p90", "vc_spikestrip_wep", "itemstore_pickup"},     command = "serg",     max = 0,     salary = 250,     admin = 0,     vote = false,     hasLicense = true,     candemote = true,     sortorder = 4,     category = "Police",     PlayerSpawn = function(ply)         ply:SetArmor(150)     end }) ​ TEAM_SSRG = DarkRP.createJob("Police Staff Sergeant", {     color = Color(0, 87, 255, 255),     model = {"models/kerry/player/police_usa/male_01.mdl", "models/kerry/player/police_usa/male_02.mdl", "models/kerry/player/police_usa/male_03.mdl", "models/kerry/player/police_usa/male_04.mdl", "models/kerry/player/police_usa/male_05.mdl", "models/kerry/player/police_usa/male_06.mdl", "models/kerry/player/police_usa/male_07.mdl", "models/kerry/player/police_usa/male_08.mdl", "models/kerry/player/police_usa/male_09.mdl"},     description = [[Follow all rules in the !motd]],     weapons = {"realrbn_tazer_mr", "m9k_glock", "bb_m4a1", "weapon_r_handcuffs", "weapon_ticketbook", "door_ram", "bb_famas", "bb_p90", "vc_spikestrip_wep", "itemstore_pickup"},     command = "ssrg",     max = 0,     salary = 250,     admin = 0,     vote = false,     hasLicense = true,     candemote = true,     sortorder = 5,     category = "Police",     PlayerSpawn = function(ply)         ply:SetArmor(150)     end }) ​ TEAM_MSGT = DarkRP.createJob("Police Master Sergeant", {     color = Color(0, 87, 255, 255),     model = {"models/kerry/player/police_usa/male_01.mdl", "models/kerry/player/police_usa/male_02.mdl", "models/kerry/player/police_usa/male_03.mdl", "models/kerry/player/police_usa/male_04.mdl", "models/kerry/player/police_usa/male_05.mdl", "models/kerry/player/police_usa/male_06.mdl", "models/kerry/player/police_usa/male_07.mdl", "models/kerry/player/police_usa/male_08.mdl", "models/kerry/player/police_usa/male_09.mdl"},     description = [[Follow all rules in the !motd]],     weapons = {"realrbn_tazer_mr", "m9k_glock", "bb_m4a1", "weapon_r_handcuffs", "weapon_ticketbook", "door_ram", "bb_famas", "vc_spikestrip_wep", "bb_p90", "itemstore_pickup"},     command = "msgt",     max = 0,     salary = 250,     admin = 0,     vote = false,     hasLicense = true,     candemote = true,     sortorder = 6,     category = "Police",     PlayerSpawn = function(ply)         ply:SetArmor(150)     end }) ​ TEAM_SM = DarkRP.createJob("Police Sergeant Major", {     color = Color(0, 87, 255, 255),     model = {"models/kerry/player/police_usa/male_01.mdl", "models/kerry/player/police_usa/male_02.mdl", "models/kerry/player/police_usa/male_03.mdl", "models/kerry/player/police_usa/male_04.mdl", "models/kerry/player/police_usa/male_05.mdl", "models/kerry/player/police_usa/male_06.mdl", "models/kerry/player/police_usa/male_07.mdl", "models/kerry/player/police_usa/male_08.mdl", "models/kerry/player/police_usa/male_09.mdl"},     description = [[Follow all rules in the !motd]],     weapons = {"realrbn_tazer_mr", "m9k_glock", "bb_m4a1", "bb_famas", "door_ram", "weapon_ticketbook", "bb_p90", "vc_spikestrip_wep", "itemstore_pickup"},     command = "sm",     max = 0,     salary = 250,     admin = 0,     vote = false,     hasLicense = true,     candemote = true,     sortorder = 7,     category = "Police",     PlayerSpawn = function(ply)         ply:SetArmor(150)     end }) ​ TEAM_LIEUT = DarkRP.createJob("Police I Lieutenant", {     color = Color(0, 87, 255, 255),     model = {"models/kerry/player/police_usa/male_01.mdl", "models/kerry/player/police_usa/male_02.mdl", "models/kerry/player/police_usa/male_03.mdl", "models/kerry/player/police_usa/male_04.mdl", "models/kerry/player/police_usa/male_05.mdl", "models/kerry/player/police_usa/male_06.mdl", "models/kerry/player/police_usa/male_07.mdl", "models/kerry/player/police_usa/male_08.mdl", "models/kerry/player/police_usa/male_09.mdl"},     description = [[Follow all rules in the !motd]],     weapons = {"realrbn_tazer_mr", "m9k_glock", "bb_m4a1", "weapon_r_handcuffs", "weapon_ticketbook", "door_ram", "bb_famas", "bb_p90", "vc_spikestrip_wep", "itemstore_pickup", "m9k_val"},     command = "lieut",     max = 0,     salary = 250,     admin = 0,     vote = false,     hasLicense = true,     candemote = true,     sortorder = 8,     category = "Police",     PlayerSpawn = function(ply)         ply:SetArmor(150)     end }) ​ TEAM_LIEU2 = DarkRP.createJob("Police II Lieutenant", {     color = Color(0, 87, 255, 255),     model = {"models/kerry/player/police_usa/male_01.mdl", "models/kerry/player/police_usa/male_02.mdl", "models/kerry/player/police_usa/male_03.mdl", "models/kerry/player/police_usa/male_04.mdl", "models/kerry/player/police_usa/male_05.mdl", "models/kerry/player/police_usa/male_06.mdl", "models/kerry/player/police_usa/male_07.mdl", "models/kerry/player/police_usa/male_08.mdl", "models/kerry/player/police_usa/male_09.mdl"},     description = [[Follow all rules in the !motd]],     weapons = {"realrbn_tazer_mr", "m9k_glock", "bb_m4a1", "bb_famas", "door_ram", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "bb_p90", "itemstore_pickup", "m9k_val"},     command = "lieu2",     max = 0,     salary = 250,     admin = 0,     vote = false,     hasLicense = true,     candemote = true,     sortorder = 9,     category = "Police",     PlayerSpawn = function(ply)         ply:SetArmor(150)     end }) ​ TEAM_CAPT = DarkRP.createJob("Police Captain", {     color = Color(0, 87, 255, 255),     model = {"models/kerry/player/police_usa/male_01.mdl", "models/kerry/player/police_usa/male_02.mdl", "models/kerry/player/police_usa/male_03.mdl", "models/kerry/player/police_usa/male_04.mdl", "models/kerry/player/police_usa/male_05.mdl", "models/kerry/player/police_usa/male_06.mdl", "models/kerry/player/police_usa/male_07.mdl", "models/kerry/player/police_usa/male_08.mdl", "models/kerry/player/police_usa/male_09.mdl"},     description = [[Follow all rules in the !motd]],     weapons = {"realrbn_tazer_mr", "m9k_glock", "bb_m4a1", "weapon_r_handcuffs", "weapon_ticketbook", "door_ram", "vc_spikestrip_wep", "itemstore_pickup", "m9k_val", "m9k_m4a1"},     command = "capt",     max = 0,     salary = 250,     admin = 0,     vote = false,     hasLicense = true,     candemote = true,     sortorder = 10,     category = "Police",     PlayerSpawn = function(ply)         ply:SetArmor(150)     end }) ​ TEAM_DEPC = DarkRP.createJob("Police Deputy Chief", {     color = Color(0, 87, 255, 255),     model = {"models/kerry/detective/male_02.mdl"},     description = [[Follow all rules in the !motd ​ You can use the intercom to  talk to everyone on the server! DO NOT ABUSE IT OR I WILL REMOVE IT!]],     weapons = {"realrbn_tazer_mr", "m9k_glock", "bb_m4a1", "weapon_r_handcuffs", "door_ram", "weapon_ticketbook", "jupiter_intercom", "vc_spikestrip_wep", "itemstore_pickup", "m9k_val", "m9k_m4a1"},     command = "depc",     max = 0,     salary = 250,     admin = 0,     vote = false,     hasLicense = true,     candemote = true,     sortorder = 11,     category = "Police",     PlayerSpawn = function(ply)         ply:SetArmor(150)     end }) ​ TEAM_CHIEF = DarkRP.createJob("Police Chief", {     color = Color(0, 87, 255, 255),     model = {"models/kerry/detective/male_01.mdl"},     description = [[Follow all rules in the !motd ​ You can use the intercom to  talk to everyone on the server! DO NOT ABUSE IT OR I WILL REMOVE IT!]],     weapons = {"realrbn_tazer_mr", "bb_m4a1", "weapon_r_handcuffs", "weapon_ticketbook", "itemstore_pickup", "m9k_val", "door_ram", "jupiter_intercom", "bb_awp", "vc_spikestrip_wep", "bb_xm1014_alt", "m9k_hk45"},     command = "chief",     max = 0,     salary = 250,     admin = 0,     vote = false,     hasLicense = true,     candemote = true,     sortorder = 12,     category = "Police",     PlayerSpawn = function(ply)         ply:SetArmor(150)     end }) ​ TEAM_DEADPOOL = DarkRP.createJob("Deadpool", {     color = Color(168, 8, 8, 255),     model = {"models/pechenko_121/deadpool/chr_deadpool2.mdl"},     description = [[ You are Deadpool, ​ Can Base: Yes Can Raid: Yes Can Counter: Yes Can own Printers: Yes]],     weapons = {"keys", "weapon checker", "lock pick", "weapon_keypadchecker", "m9k_m16a4_acog", "weapon_rubyrose_scythe", "m9k_browningauto5", "itemstore_pickup", "keypad_cracker"},     command = "deadpool",     max = 2,     salary = 200,     admin = 0,     category = "Custom Class",     vote = false,     hasLicense = true }) ​ TEAM_CRIMINALS = DarkRP.createJob("Hitman", {     color = Color(0, 0, 0, 255),     model = {"models/player/gman_high.mdl"},     description = [[Request hits and make money!!!]],     weapons = {"keypad_cracker", "itemstore_pickup", "lockpick"},     command = "hitman",     max = 2,     salary = 150,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "Criminals" }) ​ TEAM_STAFF = DarkRP.createJob("Administration", {     color = Color(255, 0, 0, 255),     model = {"models/player/combine_super_soldier.mdl"},     description = [[Administrate and watch the people!]],     weapons = {"weapon_keypadchecker", "unarrest_stick", "stunstick", "weapon_ticketbook"},     command = "administration",     max = 100,     salary = 1000,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "Staff" }) ​ TEAM_EMS = DarkRP.createJob("EMT Medic", {     color = Color(0, 178, 255, 255),     model = {"models/player/portal/male_07_medic.mdl"},     description = [[You are a medic. Go save people's lives! ​ ​ ​ Follow all rules in the !motd]],     weapons = {"weapon_medkit", "weapon_gdefib", "weapon_bandages"},     command = "emt",     max = 3,     salary = 450,     admin = 0,     vote = false,     hasLicense = true,     candemote = true,     category = "EMS" }) ​ TEAM_VIPT = DarkRP.createJob("Thief[VIP]", {     color = Color(75, 75, 75, 255),     model = {"models/player/arctic.mdl"},     description = [[The lowest person of crime. A gangster generally works for the Mobboss who runs the crime family. The Mob boss sets your agenda and you follow it or you might be punished.]],     weapons = {"bb_p228_alt", "prokeypadcracker", "pro_lockpick_update"},     command = "vipthief",     max = 4,     salary = 500,     admin = 0,     vote = false,     hasLicense = false,     candemote = true,     category = "Criminals" }) ​ TEAM_LEAN = DarkRP.createJob("Lean Producer", {     color = Color(157, 0, 214, 255),     model = {"models/player/hostage/hostage_01.mdl", "models/player/hostage/hostage_04.mdl"},     description = [[Make some lean and / or sell it to a buyer / player for some temporary speed boosts.]],     weapons = {},     command = "leanproducer",     max = 4,     salary = 25,     admin = 0,     vote = false,     hasLicense = false,     candemote = true,     category = "Criminals" }) ​ TEAM_BUS = DarkRP.createJob("Bus Driver", {     color = Color(14, 183, 217, 255),     model = {"models/player/hostage/hostage_02.mdl"},     description = [[Drive a bus around and get people to places.]],     weapons = {},     command = "/driver",     max = 2,     salary = 350,     admin = 0,     vote = false,     hasLicense = false,     candemote = false,     category = "Citizens" }) ​ TEAM_GUN = DarkRP.createJob("Gun Dealer", {     color = Color(255, 140, 0, 255),     model = {"models/player/monk.mdl"},     description = [[A Gun Dealer is the only person who can sell guns to other people. Make sure you aren't caught selling illegal firearms to the public! You might get arrested!]],     weapons = {},     command = "gundealer",     max = 2,     salary = 250,     admin = 0,     vote = false,     hasLicense = false,     candemote = true,     category = "Citizens" }) ​ TEAM_THIEF = DarkRP.createJob("Thief", {     color = Color(230, 11, 11, 255),     model = {"models/player/phoenix.mdl"},     description = [[As a thief, you raid houses, jack cars and do what you can to get by]],     weapons = {"lockpick", "keypad_cracker"},     command = "thief",     max = 4,     salary = 40,     admin = 0,     vote = false,     hasLicense = false,     candemote = false,     category = "Criminals" }) ​ TEAM_PRES = DarkRP.createJob("President", {     color = Color(255, 255, 255, 255),     model = {"models/player/donald_trump.mdl"},     description = [[You are the President. Get the police to do everything for you and take all the taxes. ​ You have a intercom to talk to everyone on the server. If you abuse this tool, it will be removed!]],     weapons = {"jupiter_intercom", "weapon_vape_american"},     command = "president",     max = 1,     salary = 500,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "Government",     mayor = true,     PlayerDeath = function(ply, weapon, killer)         ply:teamBan()         ply:changeTeam(GAMEMODE.DefaultTeam, true)         DarkRP.notifyAll(0, 4, "The President has left the office.")     end }) ​ TEAM_BMD = DarkRP.createJob("Black Market Dealer", {     color = Color(148, 148, 73, 255),     model = "models/Eli.mdl",     description = [[Black Market Dealers sell dangerous weapons and items. If the Black Market Dealer is caught selling illegal contraband he is punishable by law. ​ Black Market Dealers sell Smoke, and Flash Grenades. ​ All grenade shipments come with 5 grenades each. ​ Also able to sell Keypad Crackers, Lockpicks  and Unarrest Sticks.]],     weapons = {},     command = "blackmarketdealer",     max = 2,     salary = 90,     admin = 0,     vote = false,     hasLicense = false,     category = "Citizens",     gundealer = true }) ​ --[[--------------------------------------------------------------------------- Define which team joining players spawn into and what team you change to if demoted ---------------------------------------------------------------------------]] GAMEMODE.DefaultTeam = TEAM_CITIZEN ​ --[[--------------------------------------------------------------------------- Define which teams belong to civil protection Civil protection can set warrants, make people wanted and do some other police related things ---------------------------------------------------------------------------]] GAMEMODE.CivilProtection = {     [TEAM_POLICE] = true,     [TEAM_CHIEF] = true,     [TEAM_MAYOR] = true,     [TEAM_CHIEF] = true,     [TEAM_DEPC] = true,     [TEAM_CAPT] = true,     [TEAM_LIEU2] = true,     [TEAM_LIEUT] = true,     [TEAM_SM] = true,     [TEAM_MSGT] = true,     [TEAM_SSRG] = true,     [TEAM_SERG] = true,     [TEAM_CORP] = true,     [TEAM_PROB2] = true,     [TEAM_STAFF] = true,     [TEAM_PRES] = true } ​ --[[--------------------------------------------------------------------------- Jobs that are hitmen (enables the hitman menu) ---------------------------------------------------------------------------]] DarkRP.addHitmanTeam(TEAM_MOB)
Try changing TEAM_PROB1 model to that singular model instead of a table. Just taken a glance, could be missing a comma in that job as well.
The issue, I believe is that it's sortOrder instead of sortorder and you don't want to put the sortOrder inside the jobs.lua as that's actually handled in the categories.lua. This code works: //categories.lua DarkRP.createCategory{     name = "Police",     categorises = "jobs",     startExpanded = true,     color = Color(0, 41, 255, 255),     canSee = function(ply) return true end,     sortOrder = 5 } //jobs.lua TEAM_PROB = DarkRP.createJob("Police Probationary Officer", {     color = Color(0, 55, 255, 255),     model = {"models/kerry/player/police_usa/male_01.mdl"},     description = [[Follow all rules in the !motd]],     weapons = {"realrbn_tazer_mr", "m9k_glock", "bb_m4a1", "weapon_ticketbook", "weapon_r_handcuffs", "door_ram", "itemstore_pickup"},     command = "ppo",     max = 0,     salary = 0,     admin = 0,     vote = false,     hasLicense = true,     candemote = true,     category = "Police",     PlayerSpawn = function(ply)         ply:SetArmor(150)     end, }) TEAM_PROB2 = DarkRP.createJob("Police Cadet", {     color = Color(0, 55, 255, 255),     model = {"models/kerry/player/police_usa/male_01.mdl", "models/kerry/player/police_usa/male_02.mdl", "models/kerry/player/police_usa/male_03.mdl", "models/kerry/player/police_usa/male_04.mdl", "models/kerry/player/police_usa/male_05.mdl", "models/kerry/player/police_usa/male_06.mdl", "models/kerry/player/police_usa/male_07.mdl", "models/kerry/player/police_usa/male_08.mdl", "models/kerry/player/police_usa/male_09.mdl"},     description = [[Follow all rules in the !motd]],     weapons = {"realrbn_tazer_mr", "m9k_glock", "bb_m4a1", "weapon_ticketbook", "weapon_r_handcuffs", "door_ram", "itemstore_pickup"},     command = "pc",     max = 0,     salary = 250,     admin = 0,     vote = false,     hasLicense = true,     candemote = true,     category = "Police",     PlayerSpawn = function(ply)         ply:SetArmor(150)     end, })
@Webbing DarkRP sortOrder works for jobs as well, but it is sortOrder instead of sortorder. Camel case is definitely important when it comes to table values.
I know it works for jobs. But you don't need to define it in jobs because it's already defined in Categories.
The jobs are not still not showing up. Also I need the sororder because the jobs are police jobs and I would like the jobs to be in order in the f4 menu
Honestly I think it would just be better to redo your darkrp stuff, get rid of your custom menu stuff and code the jobs regularly with the darkrp template. After you've done that - THEN try and add your custom menu. If it was made for Darkrp everything should work just fine.
ok I will get fresh files and re do it to see if that fixes everything
mmk if you're still having troubles I can give you my discord and I can take a look at the files for you - worst case I think, you just contact the addon author and make them aware of the issue
i reinstalled darkrpmodification and it still doesn't work...
Added you, discord name ends in Web. The reason your jobs aren't working - DO NOT COPY PASTE anything from your old jobs.lua or this thread. There was invisible metadata/symbol at the line expecting "=" which read "/u200b". Maybe you pissed someone off, idk. But that's what was botching everything up.
The jobs are working now thanks for all the help!
Sorry, you need to Log In to post a reply to this thread.