RscriptsRscripts
Custom Print [FREE] (BUTTONS, COLOR, EDITING, ETC)

Custom Print [FREE] (BUTTONS, COLOR, EDITING, ETC)

1w ago
Custom Print [FREE] (BUTTONS, COLOR, EDITING, ETC)
Mobile ready
ace_gef
ace_gefVerified
8 followers

Description

hi this is my pro custom print, comment down below for reccomendations

Comments

5comments
Add a comment...
Waylon
Waylon
Pro Subscription
Verified1w ago

ts tuff, use fr

ace_gef
ace_gefVerifiedScript Owner1w ago

local s = cp.section("Title") s:add("entry") s:clear() -- section groupcp.config.debug = true -- debug button hitboxesthanks for using sip

ace_gef
ace_gefVerifiedScript Owner1w ago

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

ace_gef
ace_gefVerifiedScript Owner1w ago

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()

ace_gef
ace_gefVerifiedScript Owner1w ago

## basic docs trollface ##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

Tags

printcolorcustomacegef