-- [[ ZEKA HUB v11 | MASTER BACON EDITION | FULL UNIVERSAL ]] -- [[ NO RAYFIELD - NO LAG - 100% PERFORMANCE ]] local UIS = game:GetService("UserInputService") local CoreGui = game:GetService("CoreGui") local Players = game:GetService("Players") local RunService = game:GetService("RunService") local LP = Players.LocalPlayer local Mouse = LP:GetMouse() -- [ 1. UI KÜTÜPHANESİ (MASTER BACON ENGINE) ] local Library = {Tabs = {}, Pages = {}} function Library:Init() -- Eski GUI'yi Temizle if CoreGui:FindFirstChild("MasterBaconUI") then CoreGui.MasterBaconUI:Destroy() end local sg = Instance.new("ScreenGui", CoreGui) sg.Name = "MasterBaconUI" sg.ZIndexBehavior = Enum.ZIndexBehavior.Sibling -- [ GİRİŞ EKRANI (INTRO) ] local Intro = Instance.new("Frame", sg) Intro.Size = UDim2.new(1, 0, 1, 0) Intro.BackgroundColor3 = Color3.fromRGB(10, 10, 10) Intro.ZIndex = 999 local IntroText = Instance.new("TextLabel", Intro) IntroText.Size = UDim2.new(1, 0, 1, 0) IntroText.BackgroundTransparency = 1 IntroText.Text = "ZEKA HUB v11\nMASTER BACON OFFICIAL" IntroText.TextColor3 = Color3.fromRGB(255, 80, 80) IntroText.Font = Enum.Font.SourceSansBold IntroText.TextSize = 40 -- [ ANA PANEL ] local Main = Instance.new("Frame", sg) Main.Name = "MainFrame" Main.Size = UDim2.new(0, 550, 0, 350) Main.Position = UDim2.new(0.5, -275, 0.5, -175) Main.BackgroundColor3 = Color3.fromRGB(15, 15, 15) Main.Visible = false Main.ZIndex = 5 Instance.new("UICorner", Main).CornerRadius = UDim.new(0, 10) -- Çerçeve Çizgisi (Kırmızı) local Stroke = Instance.new("UIStroke", Main) Stroke.Color = Color3.fromRGB(255, 80, 80) Stroke.Thickness = 2 -- Başlık local Title = Instance.new("TextLabel", Main) Title.Size = UDim2.new(1, -20, 0, 40) Title.Position = UDim2.new(0, 10, 0, 5) Title.BackgroundTransparency = 1 Title.Text = "ZEKA HUB UNIVERSAL" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.Font = Enum.Font.SourceSansBold Title.TextSize = 22 Title.TextXAlignment = Enum.TextXAlignment.Left -- Kapatma Tuşu (X) local CloseBtn = Instance.new("TextButton", Main) CloseBtn.Size = UDim2.new(0, 30, 0, 30) CloseBtn.Position = UDim2.new(1, -35, 0, 5) CloseBtn.BackgroundColor3 = Color3.fromRGB(255, 50, 50) CloseBtn.Text = "X" CloseBtn.TextColor3 = Color3.new(1,1,1) Instance.new("UICorner", CloseBtn).CornerRadius = UDim.new(0, 5) CloseBtn.MouseButton1Click:Connect(function() Main.Visible = false end) -- Intro Animasyonu task.spawn(function() task.wait(1.5) Intro:Destroy() Main.Visible = true end) -- [ MOBİL "B" BUTONU ] local ToggleBtn = Instance.new("TextButton", sg) ToggleBtn.Name = "Toggle" ToggleBtn.Size = UDim2.new(0, 50, 0, 50) ToggleBtn.Position = UDim2.new(0.1, 0, 0.1, 0) -- Ekranın sol üstüne yakın ToggleBtn.BackgroundColor3 = Color3.fromRGB(255, 80, 80) ToggleBtn.Text = "B" ToggleBtn.TextColor3 = Color3.new(1,1,1) ToggleBtn.Font = Enum.Font.SourceSansBold ToggleBtn.TextSize = 30 Instance.new("UICorner", ToggleBtn).CornerRadius = UDim.new(0, 50) -- Yuvarlak ToggleBtn.MouseButton1Click:Connect(function() Main.Visible = not Main.Visible end) -- [ SOL MENÜ (TABS) ] local Sidebar = Instance.new("ScrollingFrame", Main) Sidebar.Size = UDim2.new(0, 140, 1, -50) Sidebar.Position = UDim2.new(0, 10, 0, 45) Sidebar.BackgroundTransparency = 1 Sidebar.ScrollBarThickness = 2 local SideLayout = Instance.new("UIListLayout", Sidebar) SideLayout.Padding = UDim.new(0, 5) -- [ SAĞ İÇERİK (PAGES) ] local Container = Instance.new("Frame", Main) Container.Size = UDim2.new(1, -160, 1, -50) Container.Position = UDim2.new(0, 160, 0, 45) Container.BackgroundTransparency = 1 function Library:CreateTab(Name) local TabBtn = Instance.new("TextButton", Sidebar) TabBtn.Size = UDim2.new(1, -5, 0, 35) TabBtn.Text = Name TabBtn.BackgroundColor3 = Color3.fromRGB(30, 30, 30) TabBtn.TextColor3 = Color3.fromRGB(200, 200, 200) TabBtn.Font = Enum.Font.SourceSansBold TabBtn.TextSize = 16 Instance.new("UICorner", TabBtn).CornerRadius = UDim.new(0, 6) local Page = Instance.new("ScrollingFrame", Container) Page.Size = UDim2.new(1, 0, 1, 0) Page.Visible = false Page.BackgroundTransparency = 1 Page.ScrollBarThickness = 3 local PageLayout = Instance.new("UIListLayout", Page) PageLayout.Padding = UDim.new(0, 8) TabBtn.MouseButton1Click:Connect(function() for _, p in pairs(Library.Pages) do p.Visible = false end for _, t in pairs(Sidebar:GetChildren()) do if t:IsA("TextButton") then t.BackgroundColor3 = Color3.fromRGB(30, 30, 30) end end TabBtn.BackgroundColor3 = Color3.fromRGB(255, 80, 80) -- Aktif renk Page.Visible = true end) table.insert(Library.Pages, Page) if #Library.Pages == 1 then Page.Visible = true TabBtn.BackgroundColor3 = Color3.fromRGB(255, 80, 80) end local Elements = {} -- BASİT BUTON EKLEME function Elements:AddButton(Txt, Callback) local Btn = Instance.new("TextButton", Page) Btn.Size = UDim2.new(1, -10, 0, 35) Btn.Text = Txt Btn.BackgroundColor3 = Color3.fromRGB(40, 40, 40) Btn.TextColor3 = Color3.new(1,1,1) Btn.Font = Enum.Font.SourceSans Btn.TextSize = 16 Instance.new("UICorner", Btn).CornerRadius = UDim.new(0, 6) Btn.MouseButton1Click:Connect(function() local s, e = pcall(Callback) if not s then warn("Hata: " .. e) end -- Tıklama Efekti Btn.BackgroundColor3 = Color3.fromRGB(255, 80, 80) task.wait(0.2) Btn.BackgroundColor3 = Color3.fromRGB(40, 40, 40) end) end -- TOGGLE (AÇ/KAPA) EKLEME function Elements:AddToggle(Txt, Callback) local ToggleFrame = Instance.new("TextButton", Page) ToggleFrame.Size = UDim2.new(1, -10, 0, 35) ToggleFrame.BackgroundColor3 = Color3.fromRGB(40, 40, 40) ToggleFrame.Text = "" Instance.new("UICorner", ToggleFrame).CornerRadius = UDim.new(0, 6) local Label = Instance.new("TextLabel", ToggleFrame) Label.Size = UDim2.new(0.7, 0, 1, 0) Label.Position = UDim2.new(0.05, 0, 0, 0) Label.BackgroundTransparency = 1 Label.Text = Txt Label.TextColor3 = Color3.new(1,1,1) Label.TextXAlignment = Enum.TextXAlignment.Left Label.Font = Enum.Font.SourceSans Label.TextSize = 16 local Status = Instance.new("Frame", ToggleFrame) Status.Size = UDim2.new(0, 20, 0, 20) Status.Position = UDim2.new(0.9, -10, 0.5, -10) Status.BackgroundColor3 = Color3.fromRGB(255, 50, 50) -- Kapalı (Kırmızı) Instance.new("UICorner", Status).CornerRadius = UDim.new(0, 4) local State = false ToggleFrame.MouseButton1Click:Connect(function() State = not State Status.BackgroundColor3 = State and Color3.fromRGB(50, 255, 50) or Color3.fromRGB(255, 50, 50) pcall(Callback, State) end) end return Elements end return Library end -- [ 2. ÖZELLİKLERİ YÜKLÜYORUZ ] local Zeka = Library:Init() -- /// SEKME 1: OYUNCU (PLAYER) /// local PTab = Zeka:CreateTab("Oyuncu") PTab:AddButton("Hız (Speed 100)", function() if LP.Character and LP.Character:FindFirstChild("Humanoid") then LP.Character.Humanoid.WalkSpeed = 100 end end) PTab:AddButton("Zıplama (Jump 100)", function() if LP.Character and LP.Character:FindFirstChild("Humanoid") then LP.Character.Humanoid.JumpPower = 100 end end) PTab:AddToggle("Uçma Modu (Fly)", function(v) _G.FlyMode = v if v then task.spawn(function() while _G.FlyMode do pcall(function() local HRP = LP.Character.HumanoidRootPart local Cam = workspace.CurrentCamera HRP.Velocity = Vector3.new(0,0,0) HRP.CFrame = CFrame.new(HRP.Position, HRP.Position + Cam.CFrame.LookVector) if UIS:IsKeyDown(Enum.KeyCode.W) then HRP.CFrame = HRP.CFrame + Cam.CFrame.LookVector * 1 end if UIS:IsKeyDown(Enum.KeyCode.S) then HRP.CFrame = HRP.CFrame - Cam.CFrame.LookVector * 1 end end) task.wait() end end) end end) PTab:AddToggle("Duvar Geçme (Noclip)", function(v) _G.Noclip = v RunService.Stepped:Connect(function() if _G.Noclip and LP.Character then for _, part in pairs(LP.Character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end end) end) PTab:AddToggle("Sonsuz Zıplama", function(v) _G.InfJump = v end) UIS.JumpRequest:Connect(function() if _G.InfJump and LP.Character then LP.Character.Humanoid:ChangeState("Jumping") end end) PTab:AddButton("Karakteri Sıfırla (Reset)", function() LP.Character.Humanoid.Health = 0 end) -- /// SEKME 2: GÖRSEL (VISUAL) /// local VTab = Zeka:CreateTab("Görsel") VTab:AddButton("Ultra ESP (Kırmızı)", function() for _, p in pairs(Players:GetPlayers()) do if p ~= LP and p.Character then if not p.Character:FindFirstChild("ZekaHighlight") then local h = Instance.new("Highlight", p.Character) h.Name = "ZekaHighlight" h.FillColor = Color3.fromRGB(255, 0, 0) h.OutlineColor = Color3.fromRGB(255, 255, 255) end end end end) VTab:AddButton("Full Brightness (Işık)", function() game.Lighting.Brightness = 2 game.Lighting.ClockTime = 14 game.Lighting.FogEnd = 100000 game.Lighting.GlobalShadows = false end) VTab:AddButton("X-Ray (Her Şeyi Gör)", function() for _, part in pairs(workspace:GetDescendants()) do if part:IsA("BasePart") then part.LocalTransparencyModifier = 0.5 end end end) VTab:AddButton("Görüş Açısı (FOV 120)", function() workspace.CurrentCamera.FieldOfView = 120 end) -- /// SEKME 3: OTOMASYON (FARM) /// local FTab = Zeka:CreateTab("Otomasyon") FTab:AddToggle("Otomatik Tıklayıcı (Clicker)", function(v) _G.AutoClick = v while _G.AutoClick do game:GetService("VirtualInputManager"):SendMouseButtonEvent(0,0,0,true,game,0) task.wait(0.05) game:GetService("VirtualInputManager"):SendMouseButtonEvent(0,0,0,false,game,0) task.wait(0.05) end end) FTab:AddToggle("Chat Spammer", function(v) _G.SpamChat = v while _G.SpamChat do local args = { [1] = "ZEKA HUB ON TOP! 🥓", [2] = "All" } game:GetService("ReplicatedStorage"):FindFirstChild("DefaultChatSystemChatEvents"):FindFirstChild("SayMessageRequest"):FireServer(unpack(args)) task.wait(3) end end) FTab:AddButton("Anti-AFK (Atılmama)", function() LP.Idled:Connect(function() game:GetService("VirtualUser"):Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame) task.wait(1) game:GetService("VirtualUser"):Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame) end) end) -- /// SEKME 4: EĞLENCE & DÜNYA (FUN) /// local MTab = Zeka:CreateTab("Eğlence") MTab:AddToggle("Spin Bot (Dönme)", function(v) _G.Spin = v while _G.Spin do if LP.Character and LP.Character:FindFirstChild("HumanoidRootPart") then LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame * CFrame.Angles(0, math.rad(50), 0) end task.wait() end end) MTab:AddButton("FPS Arttırıcı (Boost)", function() for _, v in pairs(game:GetDescendants()) do if v:IsA("Part") or v:IsA("MeshPart") then v.Material = "SmoothPlastic" end if v:IsA("Texture") then v:Destroy() end end end) MTab:AddButton("Server Hop (Sunucu Değiş)", function() local x = game:GetService("HttpService"):JSONDecode(game:HttpGet("https://games.roblox.com/v1/games/"..game.PlaceId.."/servers/Public?sortOrder=Asc&limit=100")) for i,v in pairs(x.data) do if v.playing < v.maxPlayers then game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, v.id) break end end end) MTab:AddButton("Btools (İnşa Modu)", function() local tool = Instance.new("HopperBin", LP.Backpack) tool.BinType = Enum.BinType.Hammer end) -- [[ 5. EKSTRA ÖZELLİKLER (SAYIYI 75'E TAMAMLAMA PAKETİ) ]] -- [ PLAYER EXTRA ] PTab:AddButton("Hız: 50 (Legit)", function() pcall(function() LP.Character.Humanoid.WalkSpeed = 50 end) end) PTab:AddButton("Hız: 200 (Flash)", function() pcall(function() LP.Character.Humanoid.WalkSpeed = 200 end) end) PTab:AddButton("Hız: 500 (Işınlan)", function() pcall(function() LP.Character.Humanoid.WalkSpeed = 500 end) end) PTab:AddButton("Zıplama: 50 (Düşük)", function() pcall(function() LP.Character.Humanoid.JumpPower = 50 end) end) PTab:AddButton("Zıplama: 200 (Yüksek)", function() pcall(function() LP.Character.Humanoid.JumpPower = 200 end) end) PTab:AddButton("Yerçekimi: Düşük (Ay Modu)", function() pcall(function() workspace.Gravity = 50 end) end) PTab:AddButton("Yerçekimi: Sıfır (Uzay)", function() pcall(function() workspace.Gravity = 0 end) end) PTab:AddButton("Yerçekimi: Normal", function() pcall(function() workspace.Gravity = 196.2 end) end) PTab:AddButton("HipHeight: Dev", function() pcall(function() LP.Character.Humanoid.HipHeight = 10 end) end) PTab:AddButton("HipHeight: Cüce", function() pcall(function() LP.Character.Humanoid.HipHeight = -2 end) end) PTab:AddButton("Karakteri Dondur", function() pcall(function() LP.Character.HumanoidRootPart.Anchored = true end) end) PTab:AddButton("Karakteri Çöz", function() pcall(function() LP.Character.HumanoidRootPart.Anchored = false end) end) PTab:AddButton("Su Üzerinde Yürü", function() pcall(function() for _,v in pairs(workspace:GetDescendants()) do if v.Name == "Water" then v.CanCollide = true end end end) end) PTab:AddButton("Otur (Sit)", function() pcall(function() LP.Character.Humanoid.Sit = true end) end) PTab:AddButton("Bayıl (PlatformStand)", function() pcall(function() LP.Character.Humanoid.PlatformStand = true end) end) PTab:AddToggle("Click TP (Ctrl+Tık)", function(v) _G.ClickTP = v local Mouse = LP:GetMouse() if _G.ClickTP then Mouse.Button1Down:Connect(function() if _G.ClickTP and UIS:IsKeyDown(Enum.KeyCode.LeftControl) then pcall(function() LP.Character.HumanoidRootPart.CFrame = CFrame.new(Mouse.Hit.p + Vector3.new(0,3,0)) end) end end) end end) -- [ VISUAL EXTRA ] VTab:AddButton("FOV: 70 (Normal)", function() pcall(function() workspace.CurrentCamera.FieldOfView = 70 end) end) VTab:AddButton("FOV: 90 (Pro)", function() pcall(function() workspace.CurrentCamera.FieldOfView = 90 end) end) VTab:AddButton("FOV: 120 (Geniş)", function() pcall(function() workspace.CurrentCamera.FieldOfView = 120 end) end) VTab:AddButton("Box ESP (Kutu)", function() pcall(function() for _,v in pairs(Players:GetPlayers()) do if v ~= LP and v.Character then local b = Instance.new("BillboardGui",v.Character.Head) b.Size = UDim2.new(0,10,0,10) b.AlwaysOnTop = true local f = Instance.new("Frame",b) f.Size = UDim2.new(1,0,1,0) f.BackgroundColor3 = Color3.new(1,0,0) end end end) end) VTab:AddButton("İsimleri Göster (Names)", function() pcall(function() for _,v in pairs(Players:GetPlayers()) do if v ~= LP and v.Character and v.Character:FindFirstChild("Head") then local bg = Instance.new("BillboardGui", v.Character.Head) bg.Size = UDim2.new(0,100,0,50) bg.StudsOffset = Vector3.new(0,2,0) bg.AlwaysOnTop = true local t = Instance.new("TextLabel", bg) t.BackgroundTransparency = 1 t.Size = UDim2.new(1,0,1,0) t.Text = v.Name t.TextColor3 = Color3.new(1,1,1) t.TextStrokeTransparency = 0 end end end) end) VTab:AddButton("Atmosfer: Gece", function() pcall(function() game.Lighting.TimeOfDay = "00:00:00" end) end) VTab:AddButton("Atmosfer: Gündüz", function() pcall(function() game.Lighting.TimeOfDay = "12:00:00" end) end) VTab:AddButton("Atmosfer: Pembe", function() pcall(function() game.Lighting.Ambient = Color3.fromRGB(255, 0, 255) end) end) VTab:AddButton("Atmosfer: Korku (Karanlık)", function() pcall(function() game.Lighting.Ambient = Color3.fromRGB(0, 0, 0); game.Lighting.Brightness = 0 end) end) VTab:AddButton("Gölgeyi Kapat", function() pcall(function() game.Lighting.GlobalShadows = false end) end) VTab:AddButton("Sisi Kaldır (No Fog)", function() pcall(function() game.Lighting.FogEnd = 999999 end) end) VTab:AddButton("Kamera Zoom: Sınırsız", function() pcall(function() LP.CameraMaxZoomDistance = 100000 end) end) -- [ AUTOMATION EXTRA ] FTab:AddButton("Eşyaları Topla (Drop)", function() pcall(function() for _,v in pairs(workspace:GetChildren()) do if v:IsA("Tool") then v.Handle.CFrame = LP.Character.HumanoidRootPart.CFrame end end end) end) FTab:AddButton("Hepsini Donan (Equip All)", function() pcall(function() for _,v in pairs(LP.Backpack:GetChildren()) do v.Parent = LP.Character end end) end) FTab:AddButton("Hepsini Bırak (Drop All)", function() pcall(function() for _,v in pairs(LP.Character:GetChildren()) do if v:IsA("Tool") then v.Parent = workspace end end end) end) FTab:AddButton("Eşyaları Kullan (Use All)", function() pcall(function() for _,v in pairs(LP.Character:GetChildren()) do if v:IsA("Tool") then v:Activate() end end end) end) FTab:AddButton("Anti-Lag (Doku Sil)", function() pcall(function() for _,v in pairs(workspace:GetDescendants()) do if v:IsA("Texture") or v:IsA("Decal") then v:Destroy() end end end) end) -- [ TROLL & MISC EXTRA ] MTab:AddButton("Fling (Döndürerek Fırlat)", function() pcall(function() local bambam = Instance.new("BodyAngularVelocity") bambam.Parent = LP.Character.HumanoidRootPart bambam.AngularVelocity = Vector3.new(0,9999,0) bambam.MaxTorque = Vector3.new(0,math.huge,0) bambam.P = math.huge end) end) MTab:AddButton("Görünmezlik (Deneysel)", function() pcall(function() LP.Character.HumanoidRootPart.Transparency = 1; for _,v in pairs(LP.Character:GetChildren()) do if v:IsA("BasePart") and v.Name ~= "HumanoidRootPart" then v:Destroy() end end end) end) MTab:AddButton("Kafasız (Client)", function() pcall(function() LP.Character.Head.Transparency = 1; LP.Character.Head.face:Destroy() end) end) MTab:AddButton("Bacakız (Korblox Fake)", function() pcall(function() LP.Character.RightUpperLeg:Destroy(); LP.Character.RightLowerLeg:Destroy(); LP.Character.RightFoot:Destroy() end) end) MTab:AddButton("Chat Log (F9)", function() pcall(function() print("Chat Log Başlatıldı...") for _,p in pairs(Players:GetPlayers()) do p.Chatted:Connect(function(msg) print(p.Name..": "..msg) end) end end) end) MTab:AddButton("Rejoin (Tekrar Gir)", function() pcall(function() game:GetService("TeleportService"):Teleport(game.PlaceId, LP) end) end) MTab:AddButton("Server Hop (Başka Sunucu)", function() pcall(function() local x = game:GetService("HttpS