- Fe - Admin Abuser Gui Script May 2026

-- Close Button closeBtn.Name = "CloseBtn" closeBtn.Size = UDim2.new(0, 30, 1, 0) closeBtn.Position = UDim2.new(1, -35, 0, 0) closeBtn.BackgroundTransparency = 1 closeBtn.Text = "✕" closeBtn.TextColor3 = Color3.fromRGB(255, 100, 100) closeBtn.TextSize = 18 closeBtn.Font = Enum.Font.GothamBold closeBtn.Parent = topBar

-- God mode toggle (local only) local godMode = false createButton("🛡️ LOCAL GOD MODE", Color3.fromRGB(80, 200, 150), function() godMode = not godMode local player = LocalPlayer local humanoid = player.Character and player.Character:FindFirstChild("Humanoid") if humanoid then if godMode then humanoid.MaxHealth = math.huge humanoid.Health = math.huge else humanoid.MaxHealth = 100 humanoid.Health = 100 end end end)

-- Freeze button local frozen = false local freezeBtn = createButton("❄️ FREEZE / UNFREEZE", Color3.fromRGB(80, 150, 200), function() if selectedPlayer and selectedPlayer.Character then local humanoid = selectedPlayer.Character:FindFirstChild("Humanoid") if humanoid then frozen = not frozen humanoid.WalkSpeed = frozen and 0 or 16 humanoid.JumpPower = frozen and 0 or 50 end end end) - FE - Admin Abuser Gui Script

-- Top Bar (for dragging) topBar.Name = "TopBar" topBar.Size = UDim2.new(1, 0, 0, 35) topBar.BackgroundColor3 = Color3.fromRGB(45, 45, 55) topBar.BackgroundTransparency = 0.1 topBar.BorderSizePixel = 0 topBar.Parent = mainFrame

-- Teleport to mouse createButton("🔄 TELEPORT TO MOUSE", Color3.fromRGB(100, 100, 200), function() if selectedPlayer and selectedPlayer.Character and selectedPlayer.Character:FindFirstChild("HumanoidRootPart") then local mousePos = Mouse.Hit.Position selectedPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(mousePos) end end) -- Close Button closeBtn

-- Function to create a styled button local function createButton(text, color, callback) local btn = Instance.new("TextButton") btn.Size = UDim2.new(1, 0, 0, 40) btn.BackgroundColor3 = color btn.BackgroundTransparency = 0.2 btn.Text = text btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.TextSize = 14 btn.Font = Enum.Font.GothamSemibold btn.AutoButtonColor = false btn.Parent = scrollFrame local btnCorner = Instance.new("UICorner") btnCorner.CornerRadius = UDim.new(0, 6) btnCorner.Parent = btn btn.MouseButton1Click:Connect(callback) -- Hover effect btn.MouseEnter:Connect(function() TweenService:Create(btn, TweenInfo.new(0.2), {BackgroundTransparency = 0.05}):Play() end) btn.MouseLeave:Connect(function() TweenService:Create(btn, TweenInfo.new(0.2), {BackgroundTransparency = 0.2}):Play() end) return btn end

createButton("✈️ LOCAL FLY", Color3.fromRGB(100, 150, 250), function() if flying then stopFly() else flying = true flyBodyVelocity = Instance.new("BodyVelocity") flyBodyVelocity.MaxForce = Vector3.new(4000, 4000, 4000) flyConnection = RunService.RenderStepped:Connect(function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then local rootPart = LocalPlayer.Character.HumanoidRootPart if not flyBodyVelocity.Parent then flyBodyVelocity.Parent = rootPart end local camera = workspace.CurrentCamera local moveDirection = Vector3.new() if UserInputService:IsKeyDown(Enum.KeyCode.W) then moveDirection = moveDirection + camera.CFrame.LookVector end if UserInputService:IsKeyDown(Enum.KeyCode.S) then moveDirection = moveDirection - camera.CFrame.LookVector end if UserInputService:IsKeyDown(Enum.KeyCode.A) then moveDirection = moveDirection - camera.CFrame.RightVector end if UserInputService:IsKeyDown(Enum.KeyCode.D) then moveDirection = moveDirection + camera.CFrame.RightVector end if UserInputService:IsKeyDown(Enum.KeyCode.Space) then moveDirection = moveDirection + Vector3.new(0, 1, 0) end if UserInputService:IsKeyDown(Enum.KeyCode.LeftControl) then moveDirection = moveDirection - Vector3.new(0, 1, 0) end if moveDirection.Magnitude > 0 then moveDirection = moveDirection.Unit * 50 end flyBodyVelocity.Velocity = moveDirection -- Keep character stable rootPart.CFrame = CFrame.new(rootPart.Position, rootPart.Position + camera.CFrame.LookVector) end end) end end) 0) closeBtn.Position = UDim2.new(1

UserInputService.InputEnded:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = false end end)