> ## Documentation Index
> Fetch the complete documentation index at: https://docs.buildwithdani.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Flotix — Getting Started

> Install and run Flotix systems inside your Roblox game using a license key.

<div className="hero-section" style={{ textAlign: 'left', padding: '0' }}>
  # Get started with Flotix

  **Set up your Roblox system in minutes with built-in licensing and game validation.**
</div>

<Note>
  You will receive your system files and license key after purchase via your Flotix dashboard.
</Note>

***

## Quick Start

<Steps>
  <Step title="1. Purchase & Access" icon="cart-shopping">
    After purchasing a Flotix system:

    * You will receive a license key
    * You will get access to download your system files (`.rbxm` or similar)
    * Your license will appear in your dashboard
  </Step>

  <Step title="2. Open Roblox Studio" icon="gamepad">
    * Launch Roblox Studio
    * Open your game project
  </Step>

  <Step title="3. Import the System" icon="file-import">
    * Drag and drop the provided `.rbxm` file into your game
    * OR use Asset Manager / Insert Object

    Typical placement:

    * `ServerScriptService` (server logic)
    * `StarterGui` (UI)
    * `ReplicatedStorage` (shared modules)
  </Step>

  <Step title="4. Enable HTTP Requests" icon="shield-check">
    Flotix requires backend validation.

    Steps:

    * Go to Home → Game Settings
    * Click Security
    * Enable "Allow HTTP Requests"
  </Step>

  <Step title="5. Add Your License Key" icon="key">
    * Locate the configuration script/module
    * Paste your license key into the required field

    Example:

    ```lua theme={null}
    LICENSE_KEY = "your-key-here"
    ```
  </Step>

  <Step title="6. Run Your Game" icon="play">
    * Click Play
    * Flotix will:
      * Send a request to validate your license
      * Check your Game ID
      * Activate the system if valid

    <Check>Flotix system loaded successfully</Check>
  </Step>
</Steps>

***

## How Flotix Works

Flotix systems run inside your Roblox game and connect to a backend for validation and feature control.

* Each purchase includes a license key
* Licenses can be limited to a number of games
* When the game starts, the system verifies:
  * License validity
  * Game ID binding
* If valid → system activates
* If invalid → system is disabled

***

## Requirements

Before using Flotix, ensure:

* Roblox Studio installed
* HTTP Requests enabled
* A valid license key
* Basic understanding of inserting assets into Roblox

***

## Next Steps

<CardGroup cols={3}>
  <Card title="Installation" icon="download" href="/flotix/installation">
    Import your system files correctly
  </Card>

  <Card title="License Setup" icon="key" href="/flotix/license-setup">
    Add and validate your license key
  </Card>

  <Card title="Game Binding" icon="link" href="/flotix/game-binding">
    Bind licenses to your game IDs
  </Card>

  <Card title="Using the System" icon="play" href="/flotix/using-system">
    Test and use the system in live sessions
  </Card>

  <Card title="Configuration" icon="sliders" href="/flotix/configuration">
    Configure options and behavior
  </Card>

  <Card title="Troubleshooting" icon="wrench" href="/flotix/troubleshooting">
    Fix common setup and validation issues
  </Card>
</CardGroup>
