Sign In to Your Account

Manual registration is temporarily disabled. Please use Discord, Google or GitHub to create an account.

CONTINUE WITH
Console Cleaner - Universal Script | Free Roblox Script

Console Cleaner

Universal 47 views 1 month ago
Console Cleaner - Roblox Script
Mobile Mobile Friendly
Key Key Required

Description

Credits: wrestonmain

OP Console Cleaner scriptthis script removing all errors warns prints

43 Lines 1,385 Bytes
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

Comments section coming soon...

Frequently Asked Questions

To use this script, you need a Roblox Executor. Simply copy the script from this page, paste it into your executor, and run it while you are in the Universal game.

This script may require a payment or subscription. Please check the script's description for more details.

Yes, this script has a key system. You may need to complete a task or join a Discord server to get a key.

Yes, this script is designed to be compatible with mobile executors.

Similar Scripts

Share Script

Share this script with others by copying the link or using your device's share options.

https://rbxscripts.net/scripts/console-cleaner/
or

Report Script

Help us maintain a safe community. Your report will be reviewed by our moderation team and appropriate action will be taken if needed.

Select a reason...
Malicious Code
Inappropriate Content
Copyright Infringement
Spam
Misleading Information
Other