title | description |
---|---|
Output Window |
The Output window in Roblox Studio displays error messages, calls to print(), and calls to warn(). |
The Output window, accessible from the View tab, displays errors captured from running scripts, messages from Roblox engine, messages from calls to print()
, and errors from calls to warn()
.
Plugins can interact with the output window through Class.LogService
, which can record and clear the output window contents. You can customize the output through the following elements:
- **Show Timestamp** — Shows a detailed timestamp in `HH:MM:SS.SSS` format.
- **Show Context** — Shows the message context, such as **Client** or **Server**.
- **Show Source** — If applicable, shows the associated script name and line number.
- **Show Tables Expanded by Default** — For outputted tables, contents are expanded by default.
- **Show Memory Address for Expandable Tables** — For expandable tables, shows the internal memory address, such as `0xb4f0417581144ec5`.
- **Log Mode** — Simplifies output by removing options, such as expandable trees.