Ranking Center
The Panora Rank Center allows Elite users to monetize group roles and automate rank promotions using Gamepasses. This module connects your Roblox group’s Gamepasses to rank upgrades.
Last updated
Was this helpful?
The Panora Rank Center allows Elite users to monetize group roles and automate rank promotions using Gamepasses. This module connects your Roblox group’s Gamepasses to rank upgrades.
Last updated
Was this helpful?
Was this helpful?
--[[
=======================================
📝 PANORA RANK CENTER CONFIG
=======================================
This script initializes the Panora Rank Center Module.
Follow the instructions to configure it for your Roblox group.
✅ WHAT TO DO:
1. Replace the API Key with your Panora Dashboard API Key.
2. Replace the Group ID with your Roblox Group ID.
3. Replace Gamepass IDs and corresponding Rank IDs.
4. Ensure only ONE Gamepass has `featured = true`.
⚙️ BEFORE PUBLISHING:
- Go to Home → Game Settings → Security:
- Enable “Allow HTTP Requests”
- Enable “Enable Third Party Teleports”
🚫 DO NOT:
- Change the module `require()` line unless instructed by Panora staff.
- Use the same Rank ID for multiple passes.
]]
local PanoraRankCenterModule = require(90080033642759)
local panoraInstance = PanoraRankCenterModule.init(
"PANORA-••••••••••••••••••••••••••••••••-API-••••••••••••••••", -- Replace with your API Key
{
GroupId = 123456789, -- Replace with your Roblox Group ID
Passes = {
{ passId = 123456789, rankId = 120, featured = true },
{ passId = 987654321, rankId = 130, featured = false },
-- Add more passes as needed
}
}
)
-- Notes:
-- API Key is private; do not share publicly.
-- Group ID is in the Roblox group URL: https://www.roblox.com/groups/GROUPID/Group-Name