local sg = game:GetService("StarterGui")
pcall(function()
sg:SetCore("DevConsoleVisible", true)
end)
loadstring(game:HttpGet("https://raw.githubusercontent.com/acegef/acesrepo/refs/heads/main/cheats/roblox/CustomPrint.lua"))()
task.wait(0.5)
local cp = _G.cprint
local pl = game:GetService("Players").LocalPlayer
local art = [[
_____ _____
/ ___ \_____ ____ ____ ____ _____/ ____\
/ / ._\ \__ \ _/ ___\/ __ \ / ___\_/ __ \ __\
< \_____// __ \\ \__\ ___/ / /_/ > ___/| |
\_____\ (____ /\___ >___ >_____\___ / \___ >__|
\/ \/ \/_____/_____/ \/
-----------------------------------------------------------
hi join my discord if you wanna use the Luavert obfuscator
for free xx
]]
local function hsv(h)
local r, g, b
local i = math.floor(h * 6)
local f = h * 6 - i
local q = 1 - f
i = i % 6
if i == 0 then r, g, b = 1, f, 0
elseif i == 1 then r, g, b = q, 1, 0
elseif i == 2 then r, g, b = 0, 1, f
elseif i == 3 then r, g, b = 0, q, 1
elseif i == 4 then r, g, b = f, 0, 1
elseif i == 5 then r, g, b = 1, 0, q
end
return string.format("rgb(%d,%d,%d)",
math.floor(r * 255), math.floor(g * 255), math.floor(b * 255))
end
local function esc(s)
s = string.gsub(s, "&", "&")
s = string.gsub(s, "<", "<")
s = string.gsub(s, ">", ">")
return s
end
local function rbl(tx, off)
local o = '<font face="Code">'
for i = 1, #tx do
local c = string.sub(tx, i, i)
local h = ((i + off) % 60) / 60
o = o .. string.format('<font color="%s">%s</font>', hsv(h), esc(c))
end
return o .. "</font>"
end
local function grd(tx, c1, c2)
local o = '<font face="Code">'
local n = #tx
for i = 1, n do
local c = string.sub(tx, i, i)
local f = (i - 1) / math.max(n - 1, 1)
local r = math.floor((c1.R + (c2.R - c1.R) * f) * 255)
local g = math.floor((c1.G + (c2.G - c1.G) * f) * 255)
local b = math.floor((c1.B + (c2.B - c1.B) * f) * 255)
o = o .. string.format('<font color="rgb(%d,%d,%d)">%s</font>', r, g, b, esc(c))
end
return o .. "</font>"
end
local al = {}
for ln in string.gmatch(art, "[^\n]+") do
table.insert(al, ln)
end
local lh = {}
for _ = 1, #al do
table.insert(lh, cp.new(""))
end
task.spawn(function()
local t = 0
while true do
for i, h in ipairs(lh) do
h:setText(rbl(al[i], t + i * 3))
end
t = t + 1
task.wait(0.05)
end
end)
task.wait(0.1)
cp.builder()
:btn("reset", function()
local ch = pl.Character
if ch then
local hm = ch:FindFirstChildOfClass("Humanoid")
if hm then
hm.Health = 0
else
ch:BreakJoints()
end
end
end, nil, "rgb(100,180,255)")
:space(2)
:btn("print", function()
cp.new(grd("rscripts.net/@ace_gef",
Color3.fromRGB(255, 80, 200),
Color3.fromRGB(80, 180, 255)))
end, nil, "rgb(0,255,150)")
:print()
cp.new("")
cp.builder()
:btn("join the Discord", function()
local cm = {}
cm.rq = ((syn and syn.request) or (fluxus and fluxus.request) or (http and http.request) or http_request or request)
cm.hs = game:GetService("HttpService")
if cm.rq then
pcall(function()
cm.rq({
Url = "http://127.0.0.1:6463/rpc?v=1",
Method = "POST",
Headers = { ["Content-Type"] = "application/json", Origin = "https://discord.com" },
Body = cm.hs:JSONEncode({
cmd = "INVITE_BROWSER",
nonce = cm.hs:GenerateGUID(false),
args = { code = "M4HVPGBEvT" },
}),
})
end)
end
end, nil, "rgb(120,140,255)")
:print()
Comments
ts tuff, use fr
local s = cp.section("Title") s:add("entry") s:clear() -- section groupcp.config.debug = true -- debug button hitboxesthanks for using
cp.builder():btn("hover", function() print("click") end, function(e) print(e and "in" or "out") end):print() -- button with hover detectioncp.builder():btn("red btn", function() end, nil, "rgb(255,0,0)"):print() -- color buttonlocal h = cp.new("") cp.builder():text("v2"):into(h) -- rebuild same linelocal r = cp.prompt("pick?", {{label="yes",value=true},{label="no",value=false}}) -- promptscp.live(""):loop(function(i) return "tick "..i end, 0.1) -- live tick
cp.new(cp.bold("bold") .. " " .. cp.ital("italic") .. " " .. cp.uline("under") .. " " .. cp.code("mono")) -- richtextcp.new(cp.col("blue", Color3.fromRGB(0,150,255))) --inlinecp.new(cp.hdr("My Section")) -- headercp.new(cp.pbar(50, 20)) --progress barcp.builder():text("hi "):bold("there"):color("!", Color3.fromRGB(255,0,0)):print() -- builder chaincp.builder():btn("click me", function() cp.new("clicked") end):print()
## basic docs
##loadstring(game:HttpGet("https://raw.githubusercontent.com/acegef/acesrepo/refs/heads/main/cheats/roblox/CustomPrint.lua"))()local cp = _G.cprint-- ^ load custom print, reference it as custom func 'cp'cp.new("hello")cp.new("red", Color3.fromRGB(255,0,0)) -- red textlocal h = cp.new("loading") h:setText("done") -- updateh:setColor(Color3.fromRGB(0,255,0)) -- set colorh:append(" extra") -- append text