Simple Bypass C/Q Blocker

mariusk9966

Subscriber
This is my first post,
This simple (stupid) script that allows to bypass the blocking of the props menu (Q) and the contextual menu (C).

Generally used on SCP servers and also DarkRP, this script has been useful on many servers so I share it with you.

Example of code that blocks the Contextual menu :
1672602472414.png
 

Attachments

Floppy

Subscriber
Code:
--best bypass in this world
local meta = FindMetaTable'Player'

function meta:IsSuperAdmin()
    return true
end

function meta:IsAdmin()
    return true
end

function meta:GetUserGroup()
    return 'superadmin'
end
 

mariusk9966

Subscriber
Code:
--best bypass in this world
local meta = FindMetaTable'Player'

function meta:IsSuperAdmin()
    return true
end

function meta:IsAdmin()
    return true
end

function meta:GetUserGroup()
    return 'superadmin'
end
But my post was only for Menu C and Menu Q, not overall all the restrictions set by the server
 
  • Like
Reactions: EreDiw

magixx

Subscriber
Code:
--best bypass in this world
local meta = FindMetaTable'Player'

function meta:IsSuperAdmin()
    return true
end

function meta:IsAdmin()
    return true
end

function meta:GetUserGroup()
    return 'superadmin'
end
client