local core = game:GetService("CoreGui")
local run = game:GetService("RunService")
run.Heartbeat:Connect(function()
local master = core:FindFirstChild("DevConsoleMaster")
if not master then return end
local window = master:FindFirstChild("DevConsoleWindow")
if not window then return end
local ui = window:FindFirstChild("DevConsoleUI")
if not ui then return end
local mainview = ui:FindFirstChild("MainView")
if mainview then
local log = mainview:FindFirstChild("ClientLog")
if log then
for _,v in pairs(log:GetDescendants()) do
if v:IsA("TextLabel") or v:IsA("ImageLabel") or v:IsA("ImageButton") then
v:Destroy()
end
end
log.DescendantAdded:Connect(function(d)
if d:IsA("TextLabel") or d:IsA("ImageLabel") or d:IsA("ImageButton") then
d:Destroy()
end
end)
end
end
local topbar = ui:FindFirstChild("TopBar")
if not topbar then return end
local live = topbar:FindFirstChild("LiveStatsModule")
if not live then return end
local err = live:FindFirstChild("LogErrorCount")
local warn = live:FindFirstChild("LogWarningCount")
if err then err.Text = "0" end
if warn then warn.Text = "0" end
end)
Comments
Peak