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:

1

Navigate to your ServerScriptService.

2

Create a Module Script named OrderLogModule

3

Use this code snippet in your new module script

local orderLog = require(15254660066)
return orderLog
4

To use the module in your order handler script

local orderLog = require(game.ServerScriptService:WaitForChild("OrderLogModule"))