What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Console Cleaner

Version / Update: v1.0.0
Download / Script Link
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)
[ View More ]
f97ee32a-2a97-419f-949d-c21f0389097d.webp


OP Console Cleaner scriptthis script removing all errors warns prints
 
Works on mobile
  1. Yes
Back
Top