Paste Shaver

Text Content

local UIS = game:GetService("UserInputService")
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local PlayerGui = LocalPlayer:WaitForChild("PlayerGui")

-- Cleanup old versions if they exist
if PlayerGui:FindFirstChild("333_DEBUG") then
    PlayerGui["333_DEBUG"]:Destroy()
end

local ScreenGui = Instance.new("ScreenGui")
ScreenGui.Name = "333_DEBUG"
ScreenGui.Parent = PlayerGui
ScreenGui.IgnoreGuiInset = true

local Main = Instance.new("Frame")
Main.Name = "MainFrame"
Main.Size = UDim2.new(0, 300, 0, 400)
Main.Position = UDim2.new(0.5, -150, 0.5, -200)
Main.BackgroundColor3 = Color3.fromRGB(10, 10, 10)
Main.BorderSizePixel = 2
Main.BorderColor3 = Color3.fromRGB(255, 105, 180) -- Pink border
Main.Active = true
Main.Draggable = true -- Allows you to move it if it's stuck behind something
Main.Parent = ScreenGui

local Title = Instance.new("TextLabel")
Title.Size = UDim2.new(1, 0, 0, 30)
Title.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
Title.Text = " 333.EXE | ACTIVE"
Title.TextColor3 = Color3.new(1, 1, 1)
Title.Font = Enum.Font.RobotoMono
Title.TextSize = 14
Title.Parent = Main

local List = Instance.new("UIListLayout")
List.Parent = Main
List.Padding = UDim.new(0, 5)
List.HorizontalAlignment = Enum.HorizontalAlignment.Center

-- Simple Button to test if clicks work
local TestBtn = Instance.new("TextButton")
TestBtn.Size = UDim2.new(0, 280, 0, 40)
TestBtn.Text = "TEST: CLICK ME"
TestBtn.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
TestBtn.TextColor3 = Color3.new(0, 1, 0)
TestBtn.Parent = Main

TestBtn.MouseButton1Click:Connect(function()
    TestBtn.Text = "WORKING!"
    TestBtn.TextColor3 = Color3.fromRGB(255, 105, 180)
end)

-- Toggle visibility with INSERT
UIS.InputBegan:Connect(function(input)
    if input.KeyCode == Enum.KeyCode.Insert then
        Main.Visible = not Main.Visible
    end
end)

print("333.exe Loaded. Press INSERT to toggle.")