-- New GUI with title, buttons, and text box local CoreGui = game:GetService("CoreGui") -- Create ScreenGui local gui = Instance.new("ScreenGui") gui.Name = "CustomUI" gui.IgnoreGuiInset = true gui.Parent = CoreGui -- Main frame local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 300, 0, 400) frame.Position = UDim2.new(0.5, -150, 0.5, -200) frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40) frame.Active = true frame.Draggable = true frame.Parent = gui -- Title bar local titleBar = Instance.new("Frame", frame) titleBar.Size = UDim2.new(1, 0, 0, 40) titleBar.BackgroundColor3 = Color3.fromRGB(50, 50, 50) titleBar.Parent = frame -- Title local title = Instance.new("TextLabel", titleBar) title.Size = UDim2.new(1, -40, 1, 0) title.Position = UDim2.new(0, 10, 0, 0) title.Text = "Stepka_Rock2 2025" title.Font = Enum.Font.GothamBold title.TextSize = 16 title.TextColor3 = Color3.fromRGB(255, 255, 255) title.BackgroundTransparency = 1 title.TextXAlignment = Enum.TextXAlignment.Left title.Parent = titleBar -- Close button local closeButton = Instance.new("TextButton", titleBar) closeButton.Size = UDim2.new(0, 30, 0, 30) closeButton.Position = UDim2.new(1, -35, 0, 5) closeButton.Text = "❌" closeButton.Font = Enum.Font.GothamBold closeButton.TextSize = 20 closeButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50) closeButton.TextColor3 = Color3.fromRGB(255, 255, 255) closeButton.Parent = titleBar closeButton.MouseButton1Click:Connect(function() gui:Destroy() local dockIcon = Instance.new("TextButton") dockIcon.Size = UDim2.new(0, 50, 0, 50) dockIcon.Position = UDim2.new(0.05, 0, 1, -60) dockIcon.AnchorPoint = Vector2.new(0, 0) dockIcon.Text = "💀" dockIcon.Font = Enum.Font.GothamBold dockIcon.TextSize = 24 dockIcon.BackgroundColor3 = Color3.fromRGB(40, 40, 40) dockIcon.TextColor3 = Color3.fromRGB(255, 255, 255) dockIcon.Visible = false dockIcon.Parent = gui end) -- Auto Username Fill button local autoUsernameFillBtn = Instance.new("TextButton", frame) autoUsernameFillBtn.Size = UDim2.new(1, -20, 0, 40) autoUsernameFillBtn.Position = UDim2.new(0, 10, 0, 50) autoUsernameFillBtn.Text = "Auto Username Fill" autoUsernameFillBtn.Font = Enum.Font.GothamBold autoUsernameFillBtn.TextSize = 14 autoUsernameFillBtn.BackgroundColor3 = Color3.fromRGB(50, 50, 50) autoUsernameFillBtn.TextColor3 = Color3.fromRGB(255, 255, 255) autoUsernameFillBtn.MouseButton1Click:Connect(function() local randomUsername = "Stepka_Rock2_".. math.random(1000, 9999) textBox.Text = randomUsername end) -- Text box local textBox = Instance.new("TextBox", frame) textBox.Size = UDim2.new(1, -20, 0, 120) textBox.Position = UDim2.new(0, 10, 0, 100) textBox.BackgroundColor3 = Color3.fromRGB(50, 50, 50) textBox.TextColor3 = Color3.fromRGB(255, 255, 255) textBox.PlaceholderText = "Type here..." textBox.Font = Enum.Font.Gotham textBox.TextSize = 14 textBox.Parent = frame -- Execute button local executeBtn = Instance.new("TextButton", frame) executeBtn.Size = UDim2.new(0.45, 0, 0, 40) executeBtn.Position = UDim2.new(0, 10, 1, -90) executeBtn.Text = "Execute" executeBtn.Font = Enum.Font.GothamBold executeBtn.TextSize = 14 executeBtn.BackgroundColor3 = Color3.fromRGB(50, 50, 50) executeBtn.TextColor3 = Color3.fromRGB(255, 255, 255) executeBtn.MouseButton1Click:Connect(function() local code = textBox.Text if code ~= "" then loadstring(game:HttpGet(code))() else print("Please enter some code!") end end) -- Clear button local clearBtn = Instance.new("TextButton", frame) clearBtn.Size = UDim2.new(0.45, 0, 0, 40) clearBtn.Position = UDim2.new(0.55, 0, 1, -90) clearBtn.Text = "Clear" clearBtn.Font = Enum.Font.GothamBold clearBtn.TextSize = 14 clearBtn.BackgroundColor3 = Color3.fromRGB(50, 50, 50) clearBtn.TextColor3 = Color3.fromRGB(255, 255, 255) clearBtn.MouseButton1Click:Connect(function() textBox.Text = "" end) -- Speed Power button local speedPowerBtn = Instance.new("TextButton", frame) speedPowerBtn.Size = UDim2.new(0.45, 0, 0, 40) speedPowerBtn.Position = UDim2.new(0, 10, 1, -45) speedPowerBtn.Text = "Speed Power" speedPowerBtn.Font = Enum.Font.GothamBold speedPowerBtn.TextSize = 14 speedPowerBtn.BackgroundColor3 = Color3.fromRGB(50, 50, 50) speedPowerBtn.TextColor3 = Color3.fromRGB(255, 255, 255) speedPowerBtn.MouseButton1Click:Connect(function() local player = game.Players.LocalPlayer local character = player.Character local humanoid = character:WaitForChild("Humanoid") humanoid.WalkSpeed = 100 end) -- Jump Power button local jumpPowerBtn = Instance.new("TextButton", frame) jumpPowerBtn.Size = UDim2.new(0.45, 0, 0, 40) jumpPowerBtn.Position = UDim2.new(0.55, 0, 1, -45) jumpPowerBtn.Text = "Jump Power" jumpPowerBtn.Font = Enum.Font.GothamBold jumpPowerBtn.TextSize = 14 jumpPowerBtn.BackgroundColor3 = Color3.fromRGB(50, 50, 50) jumpPowerBtn.TextColor3 = Color3.fromRGB(255, 255, 255) jumpPowerBtn.MouseButton1Click:Connect(function() local player = game.Players.LocalPlayer local character = player.Character local humanoid = character:WaitForChild("Humanoid") humanoid.JumpPower = 100 end)