Hi, I’m trying to check if the player has the developer console open, but I get the following error: GetCore: DeveloperConsoleVisible has not been registered by the CoreScripts.
local StarterGui = game:GetService("StarterGui")
local RunService = game:GetService("RunService")
RunService.RenderStepped:Connect(function()
print(StarterGui:GetCore("DeveloperConsoleVisible"))
end)
try local success; repeat success = pcall(function() print(StarterGui:GetCore("DeveloperConsoleVisible")) task.wait() end) until success Roblox core scripts are a bit laggy so it you might have to retry it a few times