Documentation Index
Fetch the complete documentation index at: https://docs.sirius.menu/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Starting with Build 1.74, Rayfield automatically loads its internal UI images from an external cache — no Roblox asset IDs involved. That alone makes a difference. Secure mode takes it further. It strips out every remaining reference that anti-cheats could use to identify your script:- Icons. Lucide names and
rbxassetid://values are removed at runtime. - Key system UI. The key prompt loads a detectable model, so it’s blocked entirely.
- Default model ID. You’re warned if you haven’t set a custom asset ID.
Get started
Set both flags before loading Rayfield:RAYFIELD_ASSET_ID, Rayfield still works — but the default model ID remains detectable. See Anti-Detection for how to upload your own copy.
Icons
In secure mode, Lucide icon names and Roblox image IDs are blocked. They resolve to blank. Usegetcustomasset() instead — write your images to the executor filesystem and pass the path:
CreateWindow({ Icon = ... })CreateTab(Name, Icon)CreateLabel(Text, Icon)LabelValue:Set(Text, Icon)Rayfield:Notify({ Image = ... })
Key system
The key system UI requires a Roblox model to render. In secure mode, that model is never loaded.- If the user already has a saved key from a previous session, everything works as expected.
- If there’s no saved key, the script is blocked. The key prompt can’t be shown.
Executor requirements
Custom icons withgetcustomasset() depend on the executor supporting:
getcustomassetwritefile/isfile/makefolder/isfolder
Example
A complete setup with secure mode, a custom asset ID, and custom icons:Flags
| Flag | Type | Description |
|---|---|---|
RAYFIELD_SECURE | boolean | Enables secure mode |
RAYFIELD_ASSET_ID | number | Custom asset ID for your copy of the Rayfield model |
At a glance
| Feature | Normal (1.74+) | Secure mode |
|---|---|---|
| Internal UI images | External cache | External cache |
| Lucide icons | Supported | Blocked |
| Roblox image ID icons | Supported | Blocked |
getcustomasset() icons | Supported | Supported |
| Key system | Full UI | Saved key only |
| Default model ID warning | No | Yes |