The Panora Application Center allows Elite users to create fully automated application experiences for their Roblox groups — from question setup to result tracking. This feature requires:

  • An active Elite Plan
  • A valid API Key
    See API Key
  • A whitelisted game where the Application Center will run
    See Whitelist

Accessing the Application Center

The Application Center can be accessed via the ELITE section of the sidebar in the Panora Dashboard. Once inside, you’ll see five separate tabs that each serve a different purpose.


Tab Overview

1

Overview

The first tab provides general information about the Application Center and its features. There are no editable settings here.

2

Application Settings

Here you can configure core details of your application:

  • Application Name
  • Promotion Rank (Rank given if the user passes)
  • Max Incorrect Answers (Number of questions allowed to be wrong before the user fails)

Once you’ve updated these settings, make sure to click the “Save Application” button in the top-right corner.

3

Questions

This tab allows you to build the application itself:

  • Click the + Add Question button to begin
  • Input the question text and provide four answer choices
  • Use the selector next to the answers to mark the correct one

You can add as many questions as you’d like.
Don’t forget to click “Save Application” after making changes!

4

History

View past application attempts:

  • User who took the test
  • Date the application was taken
  • Result: Passed, Failed, or Pending (hasn’t taken yet)
5

Download

This is where you’ll download the Application Center Roblox Studio file. You’ll also find setup instructions on the page, and they’re included below for reference.


What’s Next?

How to Use Your Downloaded File

Once you’ve downloaded the Application 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
  3. Enable Required Permissions
    In Studio, go to Home > Game Settings > Security and enable:

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


Application Center Script Configuration

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

--[[ 
=======================================
📝 PANORA APPLICATION CENTER CONFIG
=======================================

This script initializes the Panora Application 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.

⚙️ 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.
]]

-- Load the Panora Application Center module (DO NOT CHANGE)
local PanoraAppModule = require(117020964754995)

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

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

--[[ 
📌 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
]]

Always remember to click the “Save Application” button in the top-right of the page when making changes to your application details or questions.