Many uMod plugins use permissions to control who can access their features. This guide shows you how to grant and revoke permissions for individual players or groups.
You must have uMod installed to use these commands. See How to Install uMod (Oxide) on Your Rust Server for instructions.
Finding Permission Names
Each plugin's permissions are listed on its uMod page. Permission names typically follow this format: pluginname.permissionname
For example, the Vanish plugin has permissions like:
vanish.use- Allows using the vanish commandvanish.permanent- Stay vanished after reconnecting
Granting Permissions to Players
- Navigate to the Wabbanode Control Panel and select your Rust server.
- Click the Console tab.

- Grant a permission to a player:
oxide.grant user "playername" "permission.name"
For example:
oxide.grant user "Wabbaguy" "vanish.use"
Revoking Permissions from Players
To remove a permission from a player:
oxide.revoke user "playername" "permission.name"
Managing Permission Groups
Groups make it easier to manage permissions for multiple players at once.
Creating a Group
oxide.group add "groupname"
Adding a Player to a Group
oxide.usergroup add "playername" "groupname"
Granting Permissions to a Group
oxide.grant group "groupname" "permission.name"
Revoking Permissions from a Group
oxide.revoke group "groupname" "permission.name"
Viewing Permissions
To see what permissions a player has:
oxide.show user "playername"
To see what permissions a group has:
oxide.show group "groupname"
To see all available groups:
oxide.show groups
You can now manage plugin permissions on your server. Use groups to easily assign permissions to multiple players at once.

