Console
Display script output, distinguish information and errors, and read text submitted by the user. Control console visibility, title, and presentation.
Functions
infoWrite one or more values through Roblox's native Info output channel. It is a good place for status messages that should follow the host's Console redirection setting.
printconsoleSend a colored text line to the native console. RGB channels make a short status easier to distinguish from surrounding output.
rconsoleclearEmpty the script console's accumulated lines before starting a fresh session. It leaves the console visibility unchanged.
rconsoleerrMark a failed operation in the script console with an Error label. It gives the user a visible failure message without changing Luau control flow.
rconsolehiddenFind out whether the script console is currently hidden. Check it before starting a prompt so the user can actually see where to type.
rconsolehideHide the script console while keeping its accumulated output. Show it again later to return to the same log.
rconsoleinfoWrite an informational line to the script console with its Info label and color. Use it for a successful step that should stand out from plain output.
rconsoleinputWait for one line typed into the visible script console. Use it for a small prompt, then parse the returned text yourself.
rconsolenameChange the title at the top of the script console. A named console makes it obvious which tool is asking for input or reporting progress.
rconsoleprintWrite a plain line to the script console. It converts the supplied value to text, making it useful for ordinary progress messages and quick inspection.
rconsoleshowShow the script console, creating its on-screen UI if needed. Make it visible before printing a prompt you expect the user to answer.
rconsoletoggleFlip the script console between visible and hidden. Connect it to a Show/Hide control when you do not need to branch on its current state.
rconsoletopSet 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.
rconsolewarnMark a recoverable problem in the script console with a Warning label. The script continues after the line is written.