QuickPerms is a module which allows users to quickly write requirements to be granted permissions, this module is designed to be used for open source models like GUI kits so that your users can customize their permissions.
Normal Installation
local QuickPerms = require(10452609332)
QuickPerms = QuickPerms()
Installation with custom Permission Checks.
local QuickPerms = require(10452609332)
function PermissionCheckA(Player)
return (math.random(1,2) == 1)
end
function PermissionCheckB(Player, Param)
return not Param
end
QuickPerms = QuickPerms({
["CheckA"] = PermissionCheckA;
["CheckB"] = PermissionCheckB;
})
Please view the wiki for documentation.