The Panora Rank Center allows Elite users to monetize group roles and automate rank upgrades using Gamepasses. This feature requires:


Accessing the Rank Center

The Rank Center can be found in the ELITE section of the sidebar in the Panora Dashboard. Inside, you’ll be able to download the Rank Center file and view your configuration details.


How It Works

1

Purchase Gamepasses

Users purchase Gamepasses you’ve set up in your group game. Each Gamepass is tied to a specific rank promotion.

2

Automatic Rank Up

Upon successful purchase, the Rank Center uses your API Key to automatically promote the user to the linked rank.

3

Single Featured Rank

You can optionally mark one Gamepass as featured to make it stand out to users inside your experience.

4

Elite Required

The Rank Center will only function if your game is whitelisted and you have an active Elite Plan.


What’s Next?

How to Use Your Downloaded File

Once you’ve downloaded the Rank Center Studio file from the dashboard, follow these steps:

  1. Run the File
    Open the downloaded .rbxl file in Roblox Studio.

  2. Configure Script Settings
    Go to ServerScriptServicePANORA_CONFIG and:

    • Replace the placeholder API Key with your own
    • Set your Roblox Group ID
    • Add your Gamepass IDs and corresponding Rank IDs
    • Mark one as featured = true (optional, but recommended)
  3. Enable Required Permissions
    In Studio, go to Home > Game Settings > Security and enable:

    • HTTP Requests
    • Third Party Teleports
  4. Publish to Group
    Publish the game under your Roblox Group to activate integration.


Rank Center Script Configuration

Below is the configuration script found in the file, in case you’re using a custom game:

--[[ 
=======================================
📝 PANORA RANK CENTER CONFIG
=======================================

This script initializes the Panora Rank Center Module.
Follow the instructions below to properly configure it for your Roblox group.

✅ WHAT YOU NEED TO DO:
1. Replace the API Key with your actual key from the Panora Dashboard.
2. Replace the Group ID with your Roblox group ID.
3. Replace the Gamepass IDs and corresponding Role IDs.
4. Ensure only ONE gamepass has `featured = true`.

⚙️ BEFORE YOU PUBLISH:
1. Go to Home > Game Settings > Security:
   - Turn ON “Allow HTTP Requests”
   - Turn ON “Enable Third Party Teleports”

🚫 DO NOT:
- Change the module `require()` line unless instructed by Panora staff.
- Use the same Role ID for multiple passes.
]]

-- Load the Panora Rank Center module (DO NOT CHANGE)
local PanoraRankCenterModule = require(90080033642759)

-- Initialize the Rank Center with your API key and configuration
local panoraInstance = PanoraRankCenterModule.init(
  "PANORA-••••••••••••••••••••••••••••••••-API-••••••••••••••••", -- Replace with your actual API Key from the Panora Dashboard

  {
    GroupId = 123456789, -- Replace with your Roblox Group ID

    Passes = {
      {
        passId = 123456789,
        rankId = 120,
        featured = true,
      },
      {
        passId = 987654321,
        rankId = 130,
        featured = false,
      },
      -- Add more passes here as needed
    }
  }
)

--[[ 
📌 NOTES:
- Your API Key is private. Never share it publicly or include it in free models.
- Your Group ID can be found in the URL of your Roblox group: https://www.roblox.com/groups/GROUPID/Group-Name
]]

Make sure only one Gamepass has featured = true. This pass will be highlighted in the user interface.