--[[ Universal Delta Executor Script Features: Speed, Jump Power, Fly, ESP (Tracers/Boxes), Noclip, Infinite Jump --]] -- Services local Players = game:GetService("Players") local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local LocalPlayer = Players.LocalPlayer -- Load Orion UI Library local OrionLib = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Orion/main/source'))() local Window = OrionLib:MakeWindow({ Name = "Universal Utility | Delta", HidePremium = false, SaveConfig = true, ConfigFolder = "DeltaUniversalConfig" }) -- State Variables local Settings = { WalkSpeed = 16, JumpPower = 50, InfJump = false, Noclip = false, Fly = false, FlySpeed = 50, ESP = false } -- Target Elements local function GetCharacter() return LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait() end -- Main Tab local MainTab = Window:MakeTab({ Name = "Player", Icon = "rbxassetid://4483345998", PremiumOnly = false }) MainTab:AddSlider({ Name = "WalkSpeed", Min = 16, Max = 250, Default = 16, Color = Color3.fromRGB(255, 255, 255), Increment = 1, ValueName = "Speed", Callback = function(Value) Settings.WalkSpeed = Value local char = GetCharacter() if char and char:FindFirstChild("Humanoid") then char.Humanoid.WalkSpeed = Value end end }) MainTab:AddSlider({ Name = "Jump Power", Min = 50, Max = 350, Default = 50, Color = Color3.fromRGB(255, 255, 255), Increment = 1, ValueName = "Power", Callback = function(Value) Settings.JumpPower = Value local char = GetCharacter() if char and char:FindFirstChild("Humanoid") then char.Humanoid.UseJumpPower = true char.Humanoid.JumpPower = Value end end }) MainTab:AddToggle({ Name = "Infinite Jump", Default = false, Callback = function(Value) Settings.InfJump = Value end }) MainTab:AddToggle({ Name = "Noclip", Default = false, Callback = function(Value) Settings.Noclip = Value end }) -- Combat / Visuals Tab local VisualsTab = Window:MakeTab({ Name = "Visuals (ESP)", Icon = "rbxassetid://4483345998", PremiumOnly = false }) VisualsTab:AddToggle({ Name = "Player Highlights (ESP)", Default = false, Callback = function(Value) Settings.ESP = Value for _, plr in pairs(Players:GetPlayers()) do if plr ~= LocalPlayer and plr.Character then if Value then if not plr.Character:FindFirstChild("DeltaHighlight") then local highlight = Instance.new("Highlight") highlight.Name = "DeltaHighlight" highlight.FillColor = Color3.fromRGB(255, 0, 0) highlight.OutlineColor = Color3.fromRGB(255, 255, 255) highlight.Parent = plr.Character end else if plr.Character:FindFirstChild("DeltaHighlight") then plr.Character.DeltaHighlight:Destroy() end end end end end }) -- Connections / Loops UserInputService.JumpRequest:Connect(function() if Settings.InfJump then local char = GetCharacter() if char and char:FindFirstChild("Humanoid") then char.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping) end end end) RunService.Stepped:Connect(function() if Settings.Noclip then local char = GetCharacter() if char then for _, child in pairs(char:GetDescendants()) do if child:IsA("BasePart") and child.CanCollide then child.CanCollide = false end end end end -- Maintain Speed/Jump local char = LocalPlayer.Character if char and char:FindFirstChild("Humanoid") then if char.Humanoid.WalkSpeed ~= Settings.WalkSpeed then char.Humanoid.WalkSpeed = Settings.WalkSpeed end end end) OrionLib:Init()