rconsoletop Synchronous
rconsoletopmost
Set the script console's display order and show it. Turn on the topmost preference for a prompt that should appear over your other on-screen windows.
Luau
rconsoletop(enabled: boolean) -> ()Parameters
| Parameter | Type | Description |
|---|---|---|
enabled | boolean | true for topmost display order; false for regular display order. |
Returns
()No values.
Usage notes
A boolean is required. Both forms show the console.
Example
Luau
rconsoletop(true)
rconsoleinfo("This prompt is above other script windows")
-- Restore regular order when the prompt has finished.
rconsoletop(false)