Scripts not syncing
The plugin is connected, but the dashboard file tree is empty, missing some scripts, or showing stale code. Revix syncs your place's script contents to the dashboard so the AI can read them — when that pipeline breaks, the AI works with the wrong picture of your game.
Symptom: file tree is empty right after connecting
The first sync runs within 10 seconds of connecting.
Fix steps
- Wait up to 10 seconds after the widget shows Connected.
- If still empty, click Force Resync in the widget — this skips the timer and pushes everything immediately.
- Refresh the dashboard tab in your browser.
Symptom: some scripts are missing
A few specific cases are intentional:
- Scripts in ServerStorage are never synced. This is by design — ServerStorage often holds large or sensitive code, and we don't replicate it. Move scripts you want Revix to see into ServerScriptService, ReplicatedStorage, or another synced service.
- Only `Script`, `LocalScript`, and `ModuleScript` are synced. Other code-containing classes are skipped.
- Only specific services are walked. Revix syncs from: Workspace, ReplicatedStorage, ReplicatedFirst, ServerScriptService, StarterGui, StarterPack, StarterPlayer, Lighting, SoundService, Teams, Chat, TextChatService, MaterialService, and CollectionService. Anything elsewhere is ignored.
Tip: If you want the AI to read a script that lives in ServerStorage, duplicate it (temporarily) into ServerScriptService or ReplicatedStorage.
Symptom: dashboard shows stale code
You edited a script in Studio but the dashboard still shows the old version.
Fix steps
- Wait 10 seconds — sync runs on that interval.
- If it doesn't update, the plugin forces a full resync every 30 seconds. Wait that long.
- Click Force Resync in the widget to push immediately.
- If still stale, check the widget. If it flipped to Disconnected, see Plugin won't connect.
Symptom: errors in output
Open View > Output in Studio and look for lines prefixed [Revix]. Common ones:
| Error | Meaning | Fix |
|---|---|---|
| `HTTP requests not enabled` | Game Settings security is off | Enable in **Game Settings > Security** |
| `Unauthorized` | Account mismatch | Match the Studio account to your Revix account |
| `Rate limited` | Too many syncs in a window | Plugin auto-backs off 3s; just wait |
| `Update Required` | Plugin version too old | Reinstall from the Creator Store |