-- PLEASE JOIN SKID LEAKS : discord.gg/skidding local ReGui = loadstring(game:HttpGet('https://raw.githubusercontent.com/depthso/Dear-ReGui/refs/heads/main/ReGui.lua'))() local Window = ReGui:Window({ Title = "Console log", Size = UDim2.fromOffset(300, 200) }) local old_print = print local old_warn = warn local old_error = error local old_info = info function getcurtime() return os.date("%H:%M:%S") end function print(...) local text = {...} local curtime = getcurtime() local log = curtime .. " -- " .. table.concat(text, "\t") .. "\n" Window:Label({Text=log}) end function warn(...) local text = {...} local curtime = getcurtime() local log = curtime .. " -- " .. table.concat(text, "\t") .. "\n" Window:Label({Text=log}) end function error(...) local text = {...} local curtime = getcurtime() local log = curtime .. " -- " .. table.concat(text, "\t") .. "\n" Window:Label({Text=log}) end function info(...) local text = {...} local curtime = getcurtime() local log = curtime .. " -- " .. table.concat(text, "\t") .. "\n" Window:Label({Text=log}) end getgenv().print = print getgenv().warn = warn getgenv().error = error getgenv().info = info print("print test") warn("warn test") error("error test") info("info test")