💼Setup

In this page you will learn how to setup Panora's Admin Module.


local PanoraModule = require(82434321168927) -- Don't Change

PanoraModule.settings = {
    Prefix = ":", -- Change command prefix
    PanoraGuard = true, -- Enable PanoraGuard feature
    AntiExploit = {
        Fly = true,  -- Enable anti-fly exploit
        Speed = true, -- Enable anti-speed exploit
        SpeedLimit = 16, -- Set speed limit for anti-speed exploit
        PingSpoof = true -- Enable anti-ping spoof exploit
    },
    MaxWarnings = 2, -- Set maximum warnings before kick
    GroupID = 123456789 -- Replace with your group's ID
}

-- Only have three admin levels, Owner, Moderator, and Admin.

PanoraModule.adminLevels = {
    ["owner123"] = "Owner", -- Add a new owner-level admin user
    ["moderator456"] = "Moderator", -- Add a new moderator-level admin user
    ["admin789"] = "Admin" -- Add a new admin-level admin user
}

-- Only have three admin levels, Owner, Moderator, and Admin. 
-- If you would like to use "Guest" feel free to.

PanoraModule.groupLevels = {
    [1] = "Guest", -- Replace with your actual role IDs and names
    [2] = "Member",
    [255] = "Owner"
}

Step 1: Install Panora Module

In your Roblox game, add the Panora Admin Script to your project, naming it "PanoraAdmin". Use the following code to require the module:

local PanoraModule = require(82434321168927) -- Don't Change

Step 2: Configure Panora Settings

Define the settings for the Panora Admin System according to your game's requirements. Customize the settings as needed:

PanoraModule.settings = {
    Prefix = ":", -- Change command prefix to ":"
    PanoraGuard = true, -- Enable PanoraGuard feature
    AntiExploit = {
        Fly = true,  -- Enable anti-fly exploit
        Speed = true, -- Enable anti-speed exploit
        SpeedLimit = 16, -- Set speed limit for anti-speed exploit
        PingSpoof = true -- Enable anti-ping spoof exploit
    },
    MaxWarnings = 2, -- Set maximum warnings to 2
    GroupID = 123456789 -- Replace with your group's ID
}

Step 3: Define Admin Levels

Specify the admin levels and their corresponding users. Add new admin users as needed:

-- Only have three admin levels, Owner, Moderator, and Admin.

PanoraModule.adminLevels = {
    ["owner123"] = "Owner", -- Add a new owner-level admin user
    ["moderator456"] = "Moderator", -- Add a new moderator-level admin user
    ["admin789"] = "Admin" -- Add a new admin-level admin user
}

Step 4: Define Group Levels

Define the group levels for players in your game. Replace the role IDs and names with your actual values:

-- Only have three admin levels, Owner, Moderator, and Admin. 
-- If you would like to use "Guest" feel free to.

PanoraModule.groupLevels = {
    [1] = "Guest", -- Replace with your actual role IDs and names
    [2] = "Member",
    [255] = "Owner"
}

Conclusion

By following these steps and customizing the settings according to your game's requirements, you can successfully set up the Panora Admin System for your Roblox game.

If you have any questions, comments, or concerns. Please contact Support!.


Credits: Parent, Ant

Last updated