rconsolecreate
Opens a new console window for the executor.
function rconsolecreate(): voidSynopsis
How it works
Allocates a new Win32 console window attached to the Roblox process. Internally calls
AllocConsole(), which creates a new console and associates it with the process:
AllocConsole();
SetConsoleTitleA("Vindicta Console");
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
HANDLE hIn = GetStdHandle(STD_INPUT_HANDLE);
Only one console can exist per process. Calling this again after a console is already open is a no-op. The console window is a separate Win32 window with its own message loop, independent of Roblox's rendering.Usage
Open a console
rconsolecreate()
rconsoleprint("Console is open\n")Deprecated
This function is deprecated. Use Vindicta.print() for all console output.