-- ================================================ -- [ BLUE HOLOGRAPHIC HUB - SEA 2 ULTIMATE ] -- Developer: @Sonic1u -- Engine: Delta Executer (Mobile Optimized) -- ================================================ local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local TitleLabel = Instance.new("TextLabel") local StatusLabel = Instance.new("TextLabel") local ToggleBtn = Instance.new("TextButton") local UICornerMain = Instance.new("UICorner") local UICornerBtn = Instance.new("UICorner") local UIStrokeMain = Instance.new("UIStroke") local UIStrokeBtn = Instance.new("UIStroke") -- Screen Container ScreenGui.Parent = game.CoreGui ScreenGui.Name = "BlueCyberHologramUI" -- Main Glass Panel (Cyber Design) MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(5, 12, 22) MainFrame.BackgroundTransparency = 0.15 MainFrame.Position = UDim2.new(0.08, 0, 0.2, 0) MainFrame.Size = UDim2.new(0, 185, 0, 110) MainFrame.Active = true MainFrame.Draggable = true UICornerMain.CornerRadius = UDim.new(0, 16) UICornerMain.Parent = MainFrame UIStrokeMain.Parent = MainFrame UIStrokeMain.Color = Color3.fromRGB(0, 210, 255) UIStrokeMain.Thickness = 2.5 -- Pulse Animation for Digital Border task.spawn(function() while task.wait(0.05) do local timeVal = tick() * 3 local alpha = (math.sin(timeVal) + 1) / 2 UIStrokeMain.Color = Color3.fromRGB(0, math.floor(140 + alpha * 115), 255) end end) -- Digital Header TitleLabel.Name = "TitleLabel" TitleLabel.Parent = MainFrame TitleLabel.BackgroundTransparency = 1 TitleLabel.Position = UDim2.new(0, 0, 0, 8) TitleLabel.Size = UDim2.new(1, 0, 0, 20) TitleLabel.Font = Enum.Font.GothamBlack TitleLabel.Text = "/// BLUE CYBER v3 ///" TitleLabel.TextColor3 = Color3.fromRGB(0, 235, 255) TitleLabel.TextSize = 13.000 StatusLabel.Name = "StatusLabel" StatusLabel.Parent = MainFrame StatusLabel.BackgroundTransparency = 1 StatusLabel.Position = UDim2.new(0, 0, 0, 28) StatusLabel.Size = UDim2.new(1, 0, 0, 16) StatusLabel.Font = Enum.Font.Code StatusLabel.Text = "[ SEA 2 : READY ]" StatusLabel.TextColor3 = Color3.fromRGB(0, 160, 220) StatusLabel.TextSize = 10.000 -- Main Control Button ToggleBtn.Name = "ToggleBtn" ToggleBtn.Parent = MainFrame ToggleBtn.BackgroundColor3 = Color3.fromRGB(8, 35, 60) ToggleBtn.Position = UDim2.new(0.08, 0, 0.48, 0) ToggleBtn.Size = UDim2.new(0.84, 0, 0.42, 0) ToggleBtn.Font = Enum.Font.GothamBold ToggleBtn.Text = "BOOST SYSTEM : OFF" ToggleBtn.TextColor3 = Color3.fromRGB(100, 210, 255) ToggleBtn.TextSize = 11.000 UICornerBtn.CornerRadius = UDim.new(0, 10) UICornerBtn.Parent = ToggleBtn UIStrokeBtn.Parent = ToggleBtn UIStrokeBtn.Color = Color3.fromRGB(0, 170, 255) UIStrokeBtn.Thickness = 1.2 -- Core System Variables local Active = false local Player = game.Players.LocalPlayer local RunService = game:GetService("RunService") local SpeedValue = 220 -- سرعة خارقة ومحسوبة local NoclipConnection local Platform local function EnableSystem() -- 1. High Speed & Distance Multiplier Bypass task.spawn(function() while Active do pcall(function() if Player.Character and Player.Character:FindFirstChild("Humanoid") then Player.Character.Humanoid.WalkSpeed = SpeedValue -- أجبر النظام على اعتبار الشخصية تجري على الأرض دائماً لتسجيل المسافات Player.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Running) end end) task.wait(0.02) end end) -- 2. Air Platform (Ground Calculator) if not Platform then Platform = Instance.new("Part") Platform.Size = Vector3.new(14, 1, 14) Platform.Transparency = 1 Platform.Anchored = true Platform.Parent = workspace end -- 3. Noclip & AirWalk Loop NoclipConnection = RunService.Stepped:Connect(function() if Active and Player.Character then for _, part in pairs(Player.Character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end if Platform and Player.Character:FindFirstChild("HumanoidRootPart") then Platform.CFrame = Player.Character.HumanoidRootPart.CFrame * CFrame.new(0, -3.3, 0) end end end) end local function DisableSystem() if NoclipConnection then NoclipConnection:Disconnect() end if Platform then Platform:Destroy() Platform = nil end if Player.Character and Player.Character:FindFirstChild("Humanoid") then Player.Character.Humanoid.WalkSpeed = 16 end end -- Button Logic ToggleBtn.MouseButton1Click:Connect(function() Active = not Active if Active then ToggleBtn.Text = "BOOST SYSTEM : ON" ToggleBtn.BackgroundColor3 = Color3.fromRGB(0, 170, 255) ToggleBtn.TextColor3 = Color3.fromRGB(255, 255, 255) UIStrokeBtn.Color = Color3.fromRGB(0, 255, 200) StatusLabel.Text = "[ SPEED: 220 | NOCLIP ]" StatusLabel.TextColor3 = Color3.fromRGB(0, 255, 180) EnableSystem() else ToggleBtn.Text = "BOOST SYSTEM : OFF" ToggleBtn.BackgroundColor3 = Color3.fromRGB(8, 35, 60) ToggleBtn.TextColor3 = Color3.fromRGB(100, 210, 255) UIStrokeBtn.Color = Color3.fromRGB(0, 170, 255) StatusLabel.Text = "[ SEA 2 : READY ]" StatusLabel.TextColor3 = Color3.fromRGB(0, 160, 220) DisableSystem() end end)