Today i gonna teach u how to disable the Q menu on gmod darkrp
1) go in your ftp>garrysmod>lua>autorun>client 2) create a new lua file (name it how you want) 3) copy and paste this code :
Code:
local function DisallowSpawnMenu( ) if not LocalPlayer():IsAdmin() then return false end end hook.Add( "SpawnMenuOpen", "DisallowSpawnMenu", DisallowSpawnMenu)