Text Content
-- [[ 333.EXE | FINAL PRODUCTION BUILD ]] --
local UIS = game:GetService("UserInputService")
local RunService = game:GetService("RunService")
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
-- // 1. CORE CONFIGURATION
local Config = {
Speed = 320.5,
HipHeight = 2.0,
AntiStomp = false,
SpeedEnabled = false,
Visible = true
}
-- // 2. UI CONSTRUCT (Ensuring it shows up)
local Gui = Instance.new("ScreenGui", game:GetService("CoreGui"))
Gui.Name = "333_Project"
Gui.DisplayOrder = 999 -- Forces it above other game UI
local Main = Instance.new("Frame", Gui)
Main.Size = UDim2.new(0, 500, 0, 400)
Main.Position = UDim2.new(0.5, -250, 0.5, -200)
Main.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
Main.BorderSizePixel = 2
Main.BorderColor3 = Color3.fromRGB(255, 105, 180) -- The Pink Trim
-- Label for "333.exe"
local T = Instance.new("TextLabel", Main)
T.Text = " 333.EXE | DEVELOPER TEST"
T.Size = UDim2.new(1, 0, 0, 30)
T.TextColor3 = Color3.fromRGB(255, 105, 180)
T.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
-- // 3. SLIDER LOGIC (The "Smooth" Movement)
local function CreateSlider(name, min, max, default, callback)
local SFrame = Instance.new("Frame", Main)
SFrame.Size = UDim2.new(0.9, 0, 0, 40)
SFrame.BackgroundTransparency = 1
local L = Instance.new("TextLabel", SFrame)
L.Text = name .. " [" .. default .. "]"
L.Size = UDim2.new(1, 0, 0, 20)
L.TextColor3 = Color3.new(1,1,1)
local Bar = Instance.new("Frame", SFrame)
Bar.Size = UDim2.new(1, 0, 0, 4)
Bar.Position = UDim2.new(0, 0, 0, 25)
local Knob = Instance.new("TextButton", Bar)
Knob.Size = UDim2.new(0, 10, 0, 10)
Knob.BackgroundColor3 = Color3.fromRGB(255, 105, 180)
local dragging = false
Knob.MouseButton1Down:Connect(function() dragging = true end)
UIS.InputEnded:Connect(function(i) if i.UserInputType == Enum.UserInputType.MouseButton1 then dragging = false end end)
RunService.RenderStepped:Connect(function()
if dragging then
local percent = math.clamp((UIS:GetMouseLocation().X - Bar.AbsolutePosition.X) / Bar.AbsoluteSize.X, 0, 1)
Knob.Position = UDim2.new(percent, -5, 0.5, -5)
local val = min + (max - min) * percent
L.Text = name .. " [" .. string.format("%.3f", val) .. "]"
callback(val)
end
end)
end
-- // 4. MAPPING YOUR REQUESTS
CreateSlider("HipHeight", -10, 10, 2, function(v)
if LocalPlayer.Character:FindFirstChild("Humanoid") then
LocalPlayer.Character.Humanoid.HipHeight = v
end
end)
CreateSlider("Speed", 320.5, 1000, 320.5, function(v) Config.Speed = v end)
-- // 5. TOGGLE VISIBILITY (INSERT)
UIS.InputBegan:Connect(function(i)
if i.KeyCode == Enum.KeyCode.Insert then
Config.Visible = not Config.Visible
Main.Visible = Config.Visible
end
end)
print("333.exe Initialized. Press INSERT to toggle UI.")