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 = ''
for i = 1, #tx do
local c = string.sub(tx, i, i)
local h = ((i + off) % 60) / 60
o = o .. string.format('%s', hsv(h), esc(c))
end
return o .. ""
end
local function grd(tx, c1, c2)
local o = ''
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('%s', r, g, b, esc(c))
end
return o .. ""
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()