Rotellisense - 0.1.4
Rotellisense v0.1.4 — Roblox LSP Type Integration
What's New
Live Type Tree Integration
- On connect, Rotellisense now automatically fetches the full live instance tree from your game and writes a
rotellisense-live.project.jsonto your workspace root nightrains.robloxlspauto-discovers this file and uses it to resolve instance types natively — giving you full typed completions (:FireServer(),:FireClient(),OnServerEvent, etc.) on any instance in your live game without manual type annotations- File is deleted automatically on disconnect and on VS Code shutdown — it only exists while you're connected
New Command: Rotellisense: Refresh Live Types
- Manually re-fetches the type tree and rewrites the project file
- Useful after adding or removing instances in your game mid-session
- Prompts to reload the window so robloxlsp picks up the updated types
Fixed: GetService Path Completions
game:GetService("ReplicatedStorage").andgame:GetService("Players").now correctly show live children in hybrid mode
Hybrid Completion Mode
- New
rotellisense.completionModesetting (hybrid/webhook/off) hybrid(default): live path children from Rotellisense merge with typed API completions from Roblox LSP — no duplicates for top-level services