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

# Creating an exporter

If you're using multiple scripts for your utilities or order system, you'll need to create an order log exporter module to ensure authentication persists across scripts. Please follow the instructions below:

<Steps>
  <Step title="Navigate to your ServerScriptService." />

  <Step title="Create a Module Script named OrderLogModule" />

  <Step title="Use this code snippet in your new module script">
    ```lua theme={null}
    local orderLog = require(15254660066)
    return orderLog
    ```
  </Step>

  <Step title="To use the module in your order handler script">
    ```lua theme={null}
    local orderLog = require(game.ServerScriptService:WaitForChild("OrderLogModule"))
    ```
  </Step>
</Steps>
