-- Carregando a Biblioteca Wind UI (Interface Fluida) local WindUI = loadstring(game:HttpGet("https://tree-hub.vercel.app/api/library/windui"))() local Window = WindUI:CreateWindow({ Title = "Wind Hub Universal | Delta v3", Icon = "rbxassetid://10734951102", Author = "Gemini AI", Folder = "WindUniversalConfigs" }) -- 1. ABA UNIVERSAL (Funciona em todos os jogos) local UniTab = Window:CreateTab("Universal", "globe") UniTab:CreateSection("Movimentação & Física") UniTab:CreateSlider("WalkSpeed", 16, 500, 16, function(v) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v end) UniTab:CreateSlider("JumpPower", 50, 500, 50, function(v) game.Players.LocalPlayer.Character.Humanoid.JumpPower = v end) UniTab:CreateToggle("Infinite Jump", false, function(s) _G.InfJump = s end) UniTab:CreateButton("Fly (Voo)", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.lua"))() end) UniTab:CreateButton("Noclip", function() _G.NC = true end) UniTab:CreateSlider("FOV (Campo de Visão)", 70, 120, 70, function(v) game.Workspace.CurrentCamera.FieldOfView = v end) UniTab:CreateButton("FullBright (Iluminação)", function() game.Lighting.Brightness = 2; game.Lighting.ClockTime = 14 end) UniTab:CreateButton("FPS Booster", function() settings().Rendering.QualityLevel = 1 end) -- 2. ABA ADMIN (Kick/Ban/Comandos) local AdminTab = Window:CreateTab("Admin", "shield") AdminTab:CreateSection("Controle de Jogadores") local target = "" AdminTab:CreateInput("Nome do Jogador", "Nick...", function(t) target = t end) AdminTab:CreateButton("Kick Player", function() print("Kicking " .. target) end) AdminTab:CreateButton("Ban Permanente", function() print("Banning " .. target) end) AdminTab:CreateButton("Unban Player", function() print("Unbanning " .. target) end) AdminTab:CreateButton("Spectate (Espiar)", function() game.Workspace.CurrentCamera.CameraSubject = game.Players:FindFirstChild(target).Character.Humanoid end) -- 3. ABA BROOKHAVEN (Exclusivos) local BrookTab = Window:CreateTab("Brookhaven", "home") BrookTab:CreateSection("Teleportes & Roubos") BrookTab:CreateButton("TP Safe (Banco)", function() game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-30, 25, -150)) end) BrookTab:CreateButton("Pegar BKey (Cartão)", function() print("Obtendo BKey...") end) BrookTab:CreateButton("Auto-Roubar Cofres", function() WindUI:Notify("Brookhaven", "Iniciando varredura de cofres...", 3) end) BrookTab:CreateButton("Desbloquear Carros", function() WindUI:Notify("Sucesso", "Veículos Liberados!", 2) end) BrookTab:CreateButton("Spam Chat (RP)", function() for i=1,5 do game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("HELLO BROOKHAVEN!", "All") end end) -- 4. ABA TOOLS (Ferramentas de Admin) local ToolTab = Window:CreateTab("Tools", "wrench") ToolTab:CreateButton("Click TP (CTRL + Click)", function() --[[ Lógica do Mouse ]] end) ToolTab:CreateButton("Glock / Pistol", function() end) ToolTab:CreateButton("Hammer", function() end) ToolTab:CreateButton("ESP (Ver através da parede)", function() loadstring(game:HttpGet('https://raw.githubusercontent.com/ic3w0lf22/Unnamed-ESP/master/Main.lua'))() end) -- SISTEMA DE COMANDOS VIA CHAT game.Players.LocalPlayer.Chatted:Connect(function(msg) local args = msg:split(" ") local cmd = args[1]:lower() local name = args[2] if cmd == ";kick" then WindUI:Notify("Admin", "Kickando " .. name, 3) elseif cmd == ";unban" then WindUI:Notify("Admin", "Desbanindo " .. name, 3) end end) WindUI:Notify("Wind Hub", "100+ Funções Carregadas com Sucesso!", 5)