Quick Start
Quick Start
Section titled “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.
Prerequisites
Section titled “Prerequisites”- An invite code (required for registration)
- A Google or Discord account (for OAuth login)
- A Roblox account (for testing)
Step 1: Get an Invite Code
Section titled “Step 1: Get an Invite Code”Aureva uses invite-only registration to maintain quality and prevent abuse.
- Join the Aureva Discord
- Request an invite code from the team or check the announcements channel
- Save your invite code—you’ll need it during registration
Step 2: Register at auth.aureva.cc
Section titled “Step 2: Register at auth.aureva.cc”- Go to auth.aureva.cc
- Click Sign Up or Register
- Enter your invite code when prompted
- Choose Sign in with Google or Sign in with Discord
- Complete the OAuth flow
- You’ll be redirected to your dashboard
Step 3: Create Your First Project
Section titled “Step 3: Create Your First Project”- From the dashboard, click New Project or Create Project
- Enter a project name (e.g., “My Roblox Script”)
- Optionally add a description
- Click Create
Your project is created. You’ll see a unique Project ID—this is used in API calls and loader URLs.
Project ID: abc123xyzStep 4: Upload Your First Script
Section titled “Step 4: Upload Your First Script”- Open your project from the dashboard
- Go to the Scripts section
- Click Upload Script or Add Script
- Enter a script name (e.g., “Main Loader”)
- Paste or upload your Luau script content
- Optionally enable obfuscation (Wynfuscator or IB1) before saving
- 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 uploadprint("Hello from Aureva!")Step 5: Get the Loader URL
Section titled “Step 5: Get the Loader URL”The loader URL is what users execute in Roblox to fetch and run your script.
- In your project, go to Scripts
- Select the script you uploaded
- 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.
Step 6: Create a Key and Test in Roblox
Section titled “Step 6: Create a Key and Test in Roblox”- Go to the Keys section in your project
- Click Create Key or Generate Key
- Optionally add a label (e.g., “Test Key”)
- Copy the generated key
- 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.
Next Steps
Section titled “Next Steps”- Explore the Dashboard Overview to learn the interface
- Configure Project Settings (HWID reset, VPN, webhooks, checkpoint theming)
- Add Team Members to collaborate
- Set up the Discord Bot for key management
- Set up Webhooks for execution and alert notifications