local I = Instance.
new
local P = [Link]
local G = I("ScreenGui", [Link])
-- Tworzenie GUI
local F = I("Frame", G)
[Link] = [Link](0, 500, 0, 350)
[Link] = [Link](.5, -250, .5, -175)
F.BackgroundColor3 = [Link](0, 0, 0)
[Link] = .4
F.BorderColor3 = [Link](255, 0, 0)
[Link] = 5
[Link] = true
[Link] = true -- WAŻNE: to włącza łatwe przesuwanie!
local T = I("TextLabel", F)
[Link] = [Link](1, 0, 0, 40)
[Link] = 1
[Link] = "C00lkId HaCk ThIs FuCkInG rObLoX 2025"
T.TextColor3 = [Link](255, 0, 0)
[Link] = [Link]
[Link] = true
local B = I("TextBox", F)
[Link] = [Link](1, -20, 0, 180)
[Link] = [Link](0, 10, 0, 50)
B.BackgroundColor3 = [Link](0, 0, 0)
B.TextColor3 = [Link](255, 255, 255)
[Link] = [Link]
[Link] = "-- Enter your script here"
[Link] = [Link]
[Link] = [Link]
[Link] = false
[Link] = true
-- Tworzenie przycisków
local function mkBtn(txt, x, fn)
local b = I("TextButton", F)
[Link] = [Link](0, 90, 0, 30)
[Link] = [Link](0, x, 1, -40)
b.BackgroundColor3 = [Link](0, 0, 0)
[Link] = txt
b.TextColor3 = [Link](255, 255, 255)
[Link] = [Link]
[Link] = true
b.BorderColor3 = [Link](255, 0, 0)
[Link] = 3
b.MouseButton1Click:Connect(fn)
end
mkBtn("BodySwitch", 310, function()
local char = [Link]
if not char then return end
local hum = char:FindFirstChildOfClass("Humanoid")
local hrp = char:FindFirstChild("HumanoidRootPart")
if not (hum and hrp) then return end
for _, part in ipairs(char:GetDescendants()) do
if part:IsA("BasePart") then
[Link] = [Link](0, 0, 0)
elseif part:IsA("Accessory") or part:IsA("Clothing") then
part:Destroy()
end
end
local shirt = char:FindFirstChildOfClass("Shirt")
if shirt then shirt:Destroy() end
local pants = char:FindFirstChildOfClass("Pants")
if pants then pants:Destroy() end
local particle = [Link]("ParticleEmitter", hrp)
[Link] = "rbxassetid://243660364"
[Link] = 20
[Link] = [Link](0.5, 1)
[Link] = [Link](1, 3)
[Link] = [Link](1)
[Link]:AddItem(particle, 5)
hum:ChangeState([Link])
[Link](3)
hum:ChangeState([Link])
local head = char:FindFirstChild("Head")
if head then
local face = head:FindFirstChild("face")
if face and face:IsA("Decal") then
[Link] = "rbxassetid://7074764"
end
end
end)
mkBtn("Execute", 10, function() pcall(loadstring([Link])) end)
mkBtn("Clear", 110, function() [Link] = "" end)
mkBtn("ResetCharacter", 210, function() [Link]:BreakJoints() end)