-- CYBOR HUB GOD MODE - MAX OPTIMIZE & HATAZIZ -- Sonsuz platform (2000x1x2000 studs - haritayı kaplar) -- Tek buton, drag/minimize kesin çalışır -- Hafif, hızlı, executor uyumlu (Krnl/Fluxus/Synapse) if getgenv().CYBOR_GOD_RUNNING then return end getgenv().CYBOR_GOD_RUNNING = true local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local UIS = game:GetService("UserInputService") local SoundService = game:GetService("SoundService") local Debris = game:GetService("Debris") local CoreGui = game:GetService("CoreGui") local player = Players.LocalPlayer local S = getgenv().CYBOR_GOD or {godmode = false, minimized = false} getgenv().CYBOR_GOD = S local function play(id, vol) local s = Instance.new("Sound") s.SoundId = id s.Volume = vol or 0.6 s.Parent = SoundService s:Play() Debris:AddItem(s, 3) end local objs = {} local function reg(o) table.insert(objs, o) return o end local screen = reg(Instance.new("ScreenGui", CoreGui)) screen.IgnoreGuiInset = true screen.ResetOnSpawn = false -- Intro (kısaltıldı) local splash = reg(Instance.new("Frame", screen)) splash.Size = UDim2.fromScale(1,1) splash.BackgroundColor3 = Color3.new(0,0,0) local splashTitle = reg(Instance.new("TextLabel", splash)) splashTitle.Size = UDim2.new(1,0,1,0) splashTitle.BackgroundTransparency = 1 splashTitle.Text = "CYBOR HUB\nGOD MODE" splashTitle.Font = Enum.Font.GothamBlack splashTitle.TextScaled = true splashTitle.TextColor3 = Color3.fromRGB(255,70,90) splashTitle.TextTransparency = 1 TweenService:Create(splashTitle, TweenInfo.new(1), {TextTransparency = 0}):Play() play("rbxassetid://9123763316", 0.9) task.wait(4) TweenService:Create(splashTitle, TweenInfo.new(0.6), {TextTransparency = 1}):Play() TweenService:Create(splash, TweenInfo.new(0.6), {BackgroundTransparency = 1}):Play() task.wait(0.7) splash:Destroy() -- Main Panel local main = reg(Instance.new("Frame", screen)) main.AnchorPoint = Vector2.new(0.5,0.5) main.Position = UDim2.fromScale(0.5,0.5) main.Size = UDim2.new(0,300,0,200) main.BackgroundColor3 = Color3.fromRGB(20,20,26) main.Visible = false reg(Instance.new("UICorner", main)).CornerRadius = UDim.new(0,14) local stroke = reg(Instance.new("UIStroke", main)) stroke.Thickness = 1.2 stroke.Color = Color3.fromRGB(255,70,90) stroke.Transparency = 0.35 -- Drag (optimize) local dragging = false local dragStart, startPos main.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = main.Position end end) UIS.InputChanged:Connect(function(input) if dragging and (input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch) then local delta = input.Position - dragStart main.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end) UIS.InputEnded:Connect(function() dragging = false end) main.Visible = true main.Size = UDim2.new(0,0,0,0) TweenService:Create(main, TweenInfo.new(0.8, Enum.EasingStyle.Back, Enum.EasingDirection.Out), { Size = UDim2.new(0,300,0,200) }):Play() play("rbxassetid://9118822856", 0.7) -- Title local title = reg(Instance.new("TextLabel", main)) title.Size = UDim2.new(1,0,0,50) title.BackgroundTransparency = 1 title.Text = "CYBOR HUB GOD MODE" title.Font = Enum.Font.GothamBlack title.TextSize = 20 title.TextColor3 = Color3.fromRGB(255,70,90) -- God Mode Button local godBtn = reg(Instance.new("TextButton", main)) godBtn.Size = UDim2.new(0.8,0,0,60) godBtn.Position = UDim2.new(0.1,0,0.4,0) godBtn.Text = "GOD MODE" godBtn.Font = Enum.Font.GothamBold godBtn.TextSize = 28 godBtn.BackgroundColor3 = Color3.fromRGB(38,38,42) godBtn.TextColor3 = Color3.new(1,1,1) reg(Instance.new("UICorner", godBtn)).CornerRadius = UDim.new(0,12) -- Minimize local minBtn = reg(Instance.new("TextButton", main)) minBtn.Size = UDim2.new(0,36,0,36) minBtn.Position = UDim2.new(1,-40,0,5) minBtn.Text = "—" minBtn.BackgroundTransparency = 1 minBtn.TextColor3 = Color3.new(1,1,1) minBtn.TextSize = 30 local bubble = reg(Instance.new("Frame", screen)) bubble.Size = UDim2.new(0,80,0,80) bubble.Position = UDim2.fromScale(0.05,0.8) bubble.BackgroundColor3 = Color3.fromRGB(30,30,36) bubble.Visible = false reg(Instance.new("UICorner", bubble)).CornerRadius = UDim.new(1,0) local bubbleText = reg(Instance.new("TextLabel", bubble)) bubbleText.Size = UDim2.new(1,0,1,0) bubbleText.BackgroundTransparency = 1 bubbleText.Text = "CYBOR\nGOD" bubbleText.Font = Enum.Font.GothamBold bubbleText.TextScaled = true bubbleText.TextColor3 = Color3.new(1,1,1) local bubbleBtn = reg(Instance.new("TextButton", bubble)) bubbleBtn.Size = UDim2.new(1,0,1,0) bubbleBtn.BackgroundTransparency = 1 bubbleBtn.Text = "" minBtn.MouseButton1Click:Connect(function() S.minimized = true main.Visible = false bubble.Visible = true play("rbxassetid://12222132", 0.5) end) bubbleBtn.MouseButton1Click:Connect(function() S.minimized = false main.Visible = true bubble.Visible = false play("rbxassetid://9118822856", 0.6) end) -- Sonsuz Platform local platform = nil godBtn.MouseButton1Click:Connect(function() S.godmode = not S.godmode godBtn.BackgroundColor3 = S.godmode and Color3.fromRGB(0,160,100) or Color3.fromRGB(38,38,42) play("rbxassetid://6026984224", 0.45) if S.godmode then local char = player.Character or player.CharacterAdded:Wait() local root = char:FindFirstChild("HumanoidRootPart") if root then local pos = root.Position platform = Instance.new("Part", workspace) platform.Size = Vector3.new(2000, 1, 2000) -- Sonsuz büyük! platform.Position = Vector3.new(pos.X, pos.Y - 4, pos.Z) platform.Anchored = true platform.CanCollide = true platform.Transparency = 0.5 platform.Color = Color3.fromRGB(50,50,50) platform.Material = Enum.Material.SmoothPlastic end else if platform then platform:Destroy() platform = nil end end end) player.CharacterAdded:Connect(function() if platform then platform:Destroy() platform = nil end end) if S.minimized then main.Visible = false bubble.Visible = true end print("✅ CYBOR HUB GOD MODE v3.1 - Sonsuz platform, hatasız, optimize!")