I have Weapon Selection Menu for TTT off the website called ScriptFodder so it has the default guns such as the scout, deagle and uzi - we also have customs guns such as the mp5, aug and famas - they all work fine from spawning in game to showing in the weapon select menu. But for some reason the USP which is a handgun under the pistol category and the MP7 which is a SMG under the Primary category still show up in the wep select menu and spawn around the map even though they have been removed from the code (as seen below) so this makes no sense, I'm clearly missing something obvious. Any help is appreciated.
My ULib/ULX versions (run "ulx version" in console):
ULib v2 60
ULX v3 70
Game mode(s) I am having this problem on: TTT
Lua errors shown in console, if any:
--Primary weapons
--Restrict specific weapons to groups by editing the {}, same as below
WEAPONSELECTION_PRIMARIES =
{ weapon_ttt_m16 = {},
weapon_zm_mac10 = {},
weapon_zm_sledge = {},
weapon_ttt_mp5 = {},
weapon_zm_rifle = {},
weapon_zm_shotgun = {},
weapon_ttt_aug = {},
weapon_ttt_famas = {},
weapon_ttt_g3 = {},
weapon_ttt_galil = {},
weapon_ttt_pump = {},
weapon_ttt_sg552 = {},
weapon_ttt_smg = {} }
--Who can select to spawn with a primary? (default: { "vip", "donator", "admin", "superadmin", "owner" })
WEAPONSELECTION_PRIMARIES_GROUPS = { "vip", "donator", "admin", "superadmin", "owner" }
--Should the primary weapon group be two rows tall? (default: false)
WEAPONSELECTION_PRIMARIES_2ROWS = false
--Secondary weapons
WEAPONSELECTION_SECONDARIES =
{ weapon_zm_pistol = {},
weapon_ttt_glock = {},
weapon_ttt_p228 = {},
weapon_ttt_pistol = {} }
--Who can select to spawn with a secondary? (default: {} meaning anyone!)
WEAPONSELECTION_SECONDARIES_GROUPS = { "vip", "donator", "admin", "superadmin", "owner" }
--Grenades
WEAPONSELECTION_GRENADES =
{ weapon_ttt_confgrenade = {},
weapon_ttt_smokegrenade = {},
weapon_zm_molotov = {} }
--Who can select to spawn with a grenade? (default: { "vip", "donator", "admin", "superadmin", "owner" })
WEAPONSELECTION_GRENADES_GROUPS = { "vip", "donator", "admin", "superadmin", "owner" }