Skip to content

Quick Start

This guide walks you through creating your first Aureva project, uploading a script, and testing it in Roblox. You’ll be up and running in under 10 minutes.


  • An invite code (required for registration)
  • A Google or Discord account (for OAuth login)
  • A Roblox account (for testing)

Aureva uses invite-only registration to maintain quality and prevent abuse.

  1. Join the Aureva Discord
  2. Request an invite code from the team or check the announcements channel
  3. Save your invite code—you’ll need it during registration

  1. Go to auth.aureva.cc
  2. Click Sign Up or Register
  3. Enter your invite code when prompted
  4. Choose Sign in with Google or Sign in with Discord
  5. Complete the OAuth flow
  6. You’ll be redirected to your dashboard

  1. From the dashboard, click New Project or Create Project
  2. Enter a project name (e.g., “My Roblox Script”)
  3. Optionally add a description
  4. Click Create

Your project is created. You’ll see a unique Project ID—this is used in API calls and loader URLs.

Project ID: abc123xyz

  1. Open your project from the dashboard
  2. Go to the Scripts section
  3. Click Upload Script or Add Script
  4. Enter a script name (e.g., “Main Loader”)
  5. Paste or upload your Luau script content
  6. Optionally enable obfuscation (Wynfuscator or IB1) before saving
  7. Click Save or Upload

Your script is now stored in Aureva. After upload, you’ll receive a loader URL based on the script’s file hash.

-- Example: A simple script you might upload
print("Hello from Aureva!")

The loader URL is what users execute in Roblox to fetch and run your script.

  1. In your project, go to Scripts
  2. Select the script you uploaded
  3. Copy the Loader URL (shown in the script details)

The dashboard displays the loader URL for each script. Users pass their key as a query parameter or via the loader’s built-in key handling.


  1. Go to the Keys section in your project
  2. Click Create Key or Generate Key
  3. Optionally add a label (e.g., “Test Key”)
  4. Copy the generated key
  5. In Roblox (Executor or Studio), run:
local script_key = "YOUR_KEY"
loadstring(game:HttpGet("LOADER_URL?key=" .. script_key))()

Replace YOUR_KEY with your actual key and LOADER_URL with the loader URL from your script’s details in the dashboard.

If everything is configured correctly, your script will load and execute.