-- Delta Simple Hub Core Rebuild - Made by C3BER local CoreGui = game:GetService("CoreGui") local Players = game:GetService("Players") local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local lp = Players.LocalPlayer if not lp then return end -- Auto-wait if the player has not fully spawned into the map yet local char = lp.Character or lp.CharacterAdded:Wait() local root = char:WaitForChild("HumanoidRootPart", 5) local SG = Instance.new("ScreenGui") SG.Name = "DeltaSimpleFixed" SG.ResetOnSpawn = false -- Safe Multi-Platform Parenting Check local success, err = pcall(function() SG.Parent = CoreGui end) if not success then SG.Parent = lp:WaitForChild("PlayerGui") end -- ==================== NO-BUG PASSWORD SCREEN ==================== local KF = Instance.new("Frame") KF.Parent = SG KF.Position = UDim2.new(0.3, 0, 0.3, 0) KF.Size = UDim2.new(0, 200, 0, 120) KF.BackgroundColor3 = Color3.fromRGB(40, 40, 40) local KI = Instance.new("TextBox") KI.Parent = KF KI.Size = UDim2.new(1, 0, 0, 40) KI.PlaceholderText = "PASSWORD..." KI.Text = "" local LinkBtn = Instance.new("TextButton") LinkBtn.Parent = KF LinkBtn.Position = UDim2.new(0, 0, 0.35, 0) LinkBtn.Size = UDim2.new(1, 0, 0, 40) LinkBtn.Text = "Copy Password Link" local VerifyBtn = Instance.new("TextButton") VerifyBtn.Parent = KF VerifyBtn.Position = UDim2.new(0, 0, 0.7, 0) VerifyBtn.Size = UDim2.new(1, 0, 0, 40) VerifyBtn.Text = "Verify" -- ==================== LIGHTWEIGHT MAIN SCREEN ==================== local Main = Instance.new("Frame") Main.Parent = SG Main.Position = UDim2.new(0.05, 0, 0.2, 0) Main.Size = UDim2.new(0, 160, 0, 260) Main.BackgroundColor3 = Color3.fromRGB(30, 30, 30) Main.Visible = false local Layout = Instance.new("UIListLayout") Layout.Parent = Main Layout.Padding = UDim.new(0, 2) local function addBtn(txt, fn) local b = Instance.new("TextButton") b.Parent = Main b.Size = UDim2.new(1, 0, 0, 30) b.Text = txt b.MouseButton1Click:Connect(fn) return b end -- ==================== FEATURE LOGIC ENGAGEMENT ==================== -- 1. Fly Engine local fly = false addBtn("Fly", function() fly = not fly local p = lp.Character and lp.Character:FindFirstChild("HumanoidRootPart") if fly and p then local bv = Instance.new("BodyVelocity", p) bv.MaxForce = Vector3.new(9e9, 9e9, 9e9) task.spawn(function() while fly and p and p.Parent do bv.Velocity = workspace.CurrentCamera.CFrame.LookVector * 50 task.wait() end if bv then bv:Destroy() end end) end end) -- 2. Noclip Engine local clip = false addBtn("Noclip", function() clip = not clip RunService.Stepped:Connect(function() if clip and lp.Character then for _, v in pairs(lp.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end end) end) -- 3. Infinite Jump Engine local ij = false addBtn("Inf Jump", function() ij = not ij end) UserInputService.JumpRequest:Connect(function() if ij and lp.Character and lp.Character:FindFirstChildOfClass("Humanoid") then lp.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping") end end) -- 4. Highlight ESP Engine local esp = false addBtn("ESP", function() esp = not esp for _, p in pairs(Players:GetPlayers()) do if p ~= lp and p.Character then local h = p.Character:FindFirstChild("SimpHl") if esp and not h then local n = Instance.new("Highlight", p.Character) n.Name = "SimpHl" elseif not esp and h then h:Destroy() end end end end) -- 5. Physical Velocity Fling local flg = false addBtn("Fling Nearest", function() flg = not flg local r = lp.Character and lp.Character:FindFirstChild("HumanoidRootPart") if flg and r then local bg = Instance.new("BodyAngularVelocity", r) bg.MaxTorque = Vector3.new(9e9, 9e9, 9e9) bg.AngularVelocity = Vector3.new(0, 9e9, 0) task.spawn(function() while flg and r and r.Parent do local t, d = nil, math.huge for _, p in pairs(Players:GetPlayers()) do if p ~= lp and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then local m = (r.Position - p.Character.HumanoidRootPart.Position).Magnitude if m < d then d = m t = p.Character.HumanoidRootPart end end end if t then r.CFrame = t.CFrame end task.wait() end if bg then bg:Destroy() end end) end end) -- 6. Render Cloaking (Invisibility) local inv = false local old = {} addBtn("Invisibility", function() local c = lp.Character if not c then return end inv = not inv for _, v in pairs(c:GetDescendants()) do if v:IsA("BasePart") or v:IsA("Decal") then if inv then old[v] = v.Transparency v.Transparency = 1 else v.Transparency = old[v] or 0 end end end end) -- ==================== INTERACTIVE TELEPORT FRAME ==================== local ListBtn = addBtn("Teleport List (Open)", function() end) local Scroll = Instance.new("ScrollingFrame") Scroll.Parent = Main Scroll.Size = UDim2.new(1, 0, 0, 80) Scroll.BackgroundColor3 = Color3.fromRGB(20, 20, 20) Scroll.Visible = false local ScrollLayout = Instance.new("UIListLayout") ScrollLayout.Parent = Scroll local function updateTPList() for _, child in pairs(Scroll:GetChildren()) do if child:IsA("TextButton") then child:Destroy() end end local serverPlayers = Players:GetPlayers() Scroll.CanvasSize = UDim2.new(0, 0, 0, #serverPlayers * 25) for _, p in pairs(serverPlayers) do if p ~= lp then local pBtn = Instance.new("TextButton") pBtn.Parent = Scroll pBtn.Size = UDim2.new(1, 0, 0, 25) pBtn.Text = p.Name pBtn.MouseButton1Click:Connect(function() local myRoot = lp.Character and lp.Character:FindFirstChild("HumanoidRootPart") local targetRoot = p.Character and p.Character:FindFirstChild("HumanoidRootPart") if myRoot and targetRoot then myRoot.CFrame = targetRoot.CFrame * CFrame.new(0, 0, 2) Scroll.Visible = false ListBtn.Text = "Teleport List (Open)" end end) end end end ListBtn.MouseButton1Click:Connect(function() Scroll.Visible = not Scroll.Visible if Scroll.Visible then ListBtn.Text = "Teleport List (Close)" updateTPList() else ListBtn.Text = "Teleport List (Open)" end end) -- ==================== SCREEN UI ACTION ROUTERS ==================== LinkBtn.MouseButton1Click:Connect(function() local targetURL = "https://pastebin.com" if setclipboard then setclipboard(targetURL) elseif toclipboard then toclipboard(targetURL) end LinkBtn.Text = "Copied!" end) VerifyBtn.MouseButton1Click:Connect(function() if KI.Text == "Deltahub" then KF:Destroy() Main.Visible = true else VerifyBtn.Text = "Wrong!" task.wait(1) VerifyBtn.Text = "Verify" end end)