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.

Syntax
Luau
rconsoletop(enabled: boolean) -> ()

Parameters

Function parameters
ParameterTypeDescription
enabledbooleantrue for topmost display order; false for regular display order.

Returns

()

No values.

Usage notes

A boolean is required. Both forms show the console.

Example

Example
Luau
rconsoletop(true)
rconsoleinfo("This prompt is above other script windows")
-- Restore regular order when the prompt has finished.
rconsoletop(false)
Kawaii documentation