local player = game.Players.LocalPlayer -- CHANGE THIS TO YOUR USERNAME local allowedUser = "YourUsernameHere" if player.Name ~= allowedUser then return end -- UI local screenGui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) screenGui.Name = "DevPanel" local frame = Instance.new("Frame", screenGui) frame.Size = UDim2.new(0, 200, 0, 250) frame.Position = UDim2.new(0, 10, 0, 10) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) local function makeButton(text, yPos, callback) local button = Instance.new("TextButton", frame) button.Size = UDim2.new(1, 0, 0, 40) button.Position = UDim2.new(0, 0, 0, yPos) button.Text = text button.BackgroundColor3 = Color3.fromRGB(50, 50, 50) button.TextColor3 = Color3.new(1,1,1) button.MouseButton1Click:Connect(callback) end -- FEATURES -- Speed Boost makeButton("Speed x2", 0, function() player.Character.Humanoid.WalkSpeed = 32 end) -- Jump Boost makeButton("High Jump", 45, function() player.Character.Humanoid.JumpPower = 100 end) -- Normal Reset makeButton("Reset Stats", 90, function() player.Character.Humanoid.WalkSpeed = 16 player.Character.Humanoid.JumpPower = 50 end) -- Fly (simple) local flying = false makeButton("Toggle Fly", 135, function() flying = not flying if flying then local bodyVelocity = Instance.new("BodyVelocity") bodyVelocity.MaxForce = Vector3.new(1e5,1e5,1e5) bodyVelocity.Velocity = Vector3.new(0,50,0) bodyVelocity.Parent = player.Character.HumanoidRootPart else for _, v in pairs(player.Character.HumanoidRootPart:GetChildren()) do if v:IsA("BodyVelocity") then v:Destroy() end end end end) -- Toggle UI makeButton("Hide UI", 180, function() frame.Visible = not frame.Visible end)