Documentation

Console Basics

The admin console is your primary way to control the panel. All commands are typed into the console at the bottom of the dashboard.

  • help – show all available commands.
  • list apps, list bots, list games – list stored items.
  • clear – clear the console output.
  • clear data – delete all apps, bots and games.
  • user info – show information about the current admin user.

Creating Apps, Bots & Access Point

Items are created only through the console to keep the UI clean.

Apps

add app <Name> <URL>

Example:

add app Panel https://example.com

Bot Data

add bot <Name> <Invite URL or Dashboard URL>

Example:

add bot ModBot https://discord.com/oauth2/...

Acess Point

You can either use add game or the more flexible app create command that supports spaces in the name:

add game <Name> <URL>
app create <Name With Spaces> <Roblox URL>

Example:

app create My Cool Obby https://www.roblox.com/games/123456/My-Cool-Obby

Deleting

  • delete all apps – delete every app.
  • delete app <id or name>
  • delete bot <id or name>
  • delete game <id or name>

Use list apps / list games first to see IDs.

Hiding Apps (Visibility)

Admins can hide apps globally or only for specific users.

Global hide/show (all non-admins):

hide app <id or name>
show app <id or name>

Per-user hide/show:

hide app <id or name> user <username>
show app <id or name> user <username>

Admins always see all apps. Normal users never see apps that are globally hidden or hidden for their username.

Accounts & Permissions

The panel supports multiple accounts. Only admins can change data; normal users are view-only.

Default Admin

  • Username: #########
  • Password: #####

Create Accounts (admin only)

You can create new users from the console:

create account <username> <password> admin <true|false>
create account <username> pass <password> admin <true|false>

Examples:

create account user3 laviaco admin true
create account viewer1 pass test123 admin false

Listing Accounts (admin only)

list accounts

Permissions

  • Admins can run: add, delete, clear data, create account, hide/show app, etc.
  • Normal users can only view: list apps/bots/games, user info, and basic clear (console output).
  • If a non-admin runs an admin command, the console shows Insufficient permissions.

API Handling (Concepts)

This panel is front-end only. To connect it to real services (Bot Data, Roblox APIs, your own backend), follow these guidelines:

  • Never hard-code API keys or tokens directly in the HTML / JS.
  • Use a backend (Node, Python, etc.) to proxy sensitive calls.
  • Keep tokens in environment variables on the server, not in this panel.
  • Expose only safe endpoints to the panel (e.g. /api/stats, /api/apps).
  • Log only what you need; avoid logging secrets to the browser console.

You can adapt the existing data methods (loadData, saveData) to call your own API instead of localStorage if you build a backend later.

Security & Do Not Leak Policy

This panel is intended for private admin use only.

  • Do not share screenshots that expose API keys, tokens, or internal URLs.
  • Do not paste secrets (bot tokens, database passwords, webhook URLs) into the console.
  • Only trusted admins should have access to this dashboard.
  • If you integrate real APIs, host this panel behind authentication.
  • Treat anything shown here as internal only; do not leak configuration or private data onto public sites.

If you suspect anything has leaked, rotate all tokens and keys immediately and review access logs on your backend.

Integrations

Use this section to document how your panel connects to external systems like Discord, Roblox, or other web apps.

  • List each integration and what it does.
  • Link to external dashboards (Discord developer portal, Roblox creator dashboard, etc.).
  • Note any required permissions or scopes.

Activity Logs

Describe how you track important actions taken in the panel.

  • Log login attempts and logouts.
  • Record when apps, bots or games are created or deleted.
  • Track changes to accounts and permissions.