docs.surge.lgbt

Requesting Files

Basic Usage

Use the loader to pull and execute any file from raw.surge.lgbt:

local load = loadstring(game:HttpGet("https://raw.surge.lgbt/loader.luau"))()
load("file.luau")

Direct Request

Or fetch a file directly without the loader:

loadstring(game:HttpGet("https://raw.surge.lgbt/file.luau"))()

Access

Files are only accessible from Roblox executors. Requests from a browser are rejected. No token or setup is required — access is determined automatically by the request origin.

Errors

404 — File does not exist

403 — Request not from a Roblox executor