local CG,PL,RS,UI,TS=game:GetService("CoreGui"),game:GetService("Players"),game:GetService("RunService"),game:GetService("UserInputService"),game:GetService("TweenService") local LP=PL.LocalPlayer;if CG:FindFirstChild("DeltaHub")then CG.DeltaHub:Destroy()end;getgenv().HSize,getgenv().HTrans,getgenv().HOn,getgenv().WOn,getgenv().WVal=1,0.7,false,false,16;getgenv().JOn,getgenv().JVal,getgenv().IOn,getgenv().NOn=false,50,false,false;getgenv().EOn=false;local T={Bg=Color3.fromRGB(15,15,17),Panel=Color3.fromRGB(22,22,26),Card=Color3.fromRGB(20,20,24),Accent=Color3.fromRGB(59,130,246),White=Color3.fromRGB(255,255,255),Gray=Color3.fromRGB(156,163,175),On=Color3.fromRGB(34,197,94),Off=Color3.fromRGB(220,38,38),Line=Color3.fromRGB(30,30,35),SliderBg=Color3.fromRGB(28,28,32)}local SG=Instance.new("ScreenGui",CG)SG.Name,SG.ResetOnSpawn="DeltaHub",false;local TG=Instance.new("TextButton",SG)TG.Size,TG.Position,TG.BackgroundColor3,TG.Text,TG.Draggable=UDim2.new(0,55,0,55),UDim2.new(0.02,0,0.2,0),T.Panel,"MENU",true;TG.TextColor3,TG.Font,TG.TextSize=T.Accent,"SourceSansBold",14;Instance.new("UICorner",TG).CornerRadius=UDim.new(0,28)local MF=Instance.new("Frame",SG)MF.Size,MF.Position,MF.BackgroundColor3,MF.Draggable=UDim2.new(0,340,0,450),UDim2.new(0.5,-170,0.3,-225),T.Bg,true;Instance.new("UICorner",MF).CornerRadius=UDim.new(0,12)local MFStr=Instance.new("UIStroke",MF)MFStr.Color,MFStr.Thickness=Color3.fromRGB(40,40,45),1.5;local SF=Instance.new("ScrollingFrame",MF)SF.Size,SF.Position,SF.BackgroundTransparency,SF.ScrollBarThickness,SF.ScrollBarImageColor3=UDim2.new(1,-16,1,-20),UDim2.new(0,8,0,10),1,4,Color3.fromRGB(50,50,55)local LL=Instance.new("UIListLayout",SF)LL.Padding,LL.FillDirection,LL.HorizontalAlignment=UDim.new(0,10),"Vertical","Center"local function scale()SF.CanvasSize=UDim2.new(0,0,0,LL.AbsoluteContentSize.Y+20)end;LL:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(scale)TG.MouseButton1Click:Connect(function()MF.Visible=not MF.Visible end)local function MakeToggle(txt,cb)local f=Instance.new("Frame",SF)f.Size,f.BackgroundColor3=UDim2.new(1,-12,0,50),T.Card;Instance.new("UICorner",f).CornerRadius=UDim.new(0,8)local l=Instance.new("TextLabel",f)l.Size,l.Position,l.Text,l.TextColor3,l.TextXAlignment,l.BackgroundTransparency,l.Font,l.TextSize=UDim2.new(1,-90,1,0),UDim2.new(0,12,0,0),txt,T.White,"Left",1,"SourceSans",16;local b=Instance.new("TextButton",f)b.Size,b.Position,b.BackgroundColor3,b.Text,b.TextColor3,b.Font,b.TextSize=UDim2.new(0,65,0,28),UDim2.new(1,-77,0.5,-14),T.Off,"OFF",T.White,"SourceSansBold",14;Instance.new("UICorner",b).CornerRadius=UDim.new(0,6)local s=false;b.MouseButton1Click:Connect(function()s=not s;cb(s)b.BackgroundColor3=s and T.On or T.Off;b.Text=s and "ON" or "OFF" end)scale()end;local function MakeSlider(txt,min,max,def,isFloat,cb)local f=Instance.new("Frame",SF)f.Size,f.BackgroundColor3=UDim2.new(1,-12,0,65),T.Card;Instance.new("UICorner",f).CornerRadius=UDim.new(0,8)local l=Instance.new("TextLabel",f)l.Size,l.Position,l.Text,l.TextColor3,l.TextXAlignment,l.BackgroundTransparency,l.Font,l.TextSize=UDim2.new(1,-24,0,30),UDim2.new(0,12,0,4),txt..": "..def,T.White,"Left",1,"SourceSans",15;local sb=Instance.new("TextButton",f)sb.Size,sb.Position,sb.BackgroundColor3,sb.Text=UDim2.new(1,-24,0,8),UDim2.new(0,12,1,-22),T.SliderBg,"";Instance.new("UICorner",sb).CornerRadius=UDim.new(0,4)local sbar=Instance.new("Frame",sb)sbar.Size=UDim2.new((def-min)/(max-min),0,1,0)sbar.BackgroundColor3=T.Accent;Instance.new("UICorner",sbar).CornerRadius=UDim.new(0,4)local drag=false;local function up(inp)local p=math.clamp((inp.Position.X-sb.AbsolutePosition.X)/sb.AbsoluteSize.X,0,1)local v=min+(max-min)*p;v=not isFloat and math.floor(v) or math.floor(v*10)/10;sbar.Size=UDim2.new(p,0,1,0)l.Text=txt..": "..v;cb(v)end;sb.InputBegan:Connect(function(inp)if inp.UserInputType.Name:find("Mouse") or inp.UserInputType.Name:find("Touch") then drag=true;up(inp)end end)UI.InputChanged:Connect(function(inp)if drag and(inp.UserInputType.Name:find("Mouse") or inp.UserInputType.Name:find("Touch"))then up(inp)end end)UI.InputEnded:Connect(function(inp)if inp.UserInputType.Name:find("Mouse") or inp.UserInputType.Name:find("Touch") then drag=false end end)scale()end;local function MakeHeader(title)local f=Instance.new("Frame",SF)f.Size=UDim2.new(1,-12,0,30)f.BackgroundTransparency=1;local l=Instance.new("TextLabel",f)l.Size=UDim2.new(1,0,1,0)l.Text="—— "..title:upper().." ——"l.TextColor3=T.Accent;l.Font="SourceSansBold"l.TextSize=14;l.TextXAlignment="Center"l.BackgroundTransparency=1;scale()end;local function MakeTele(txt,vec,isSub)local f=Instance.new("Frame",SF)f.Size=UDim2.new(1,-12,0,isSub and 35 or 50)f.BackgroundColor3=T.Card;Instance.new("UICorner",f).CornerRadius=UDim.new(0,8)local l=Instance.new("TextLabel",f)l.Size=UDim2.new(1,-110,1,0)l.Position=UDim2.new(0,isSub and 24 or 12,0,0)l.Text=txt;l.TextColor3=isSub and T.Gray or T.White;l.TextXAlignment="Left"l.BackgroundTransparency=1;l.Font="SourceSans"l.TextSize=isSub and 14 or 16;local b=Instance.new("TextButton",f)b.Size=UDim2.new(0,65,0,isSub and 22 or 28)b.Position=UDim2.new(1,-77,0.5,isSub and -11 or -14)b.BackgroundColor3=T.Accent;b.Text="TP"b.TextColor3=T.White;b.Font="SourceSansBold"b.TextSize=isSub and 12 or 14;Instance.new("UICorner",b).CornerRadius=UDim.new(0,6)b.MouseButton1Click:Connect(function()local hrp=LP.Character and LP.Character:FindFirstChild("HumanoidRootPart")if hrp then hrp.CFrame=CFrame.new(vec + Vector3.new(0, 1.2, 0))end end)scale()end;MakeHeader("Main Features")MakeToggle("ESP",function(v)getgenv().EOn=v end)MakeToggle("Expand Hitboxes",function(v)getgenv().HOn=v end)MakeSlider("Hitbox Size",1,50,1,false,function(v)getgenv().HSize=v end)MakeSlider("Hitbox Transparency",1,20,14,false,function(v)getgenv().HTrans=v/20 end)MakeToggle("Enable Speed",function(v)getgenv().WOn=v end)MakeSlider("WalkSpeed",16,300,16,false,function(v)getgenv().WVal=v end)MakeToggle("Enable Jump",function(v)getgenv().JOn=v end)MakeSlider("JumpPower",50,300,50,false,function(v)getgenv().JVal=v end)MakeToggle("Infinite Jump",function(v)getgenv().IOn=v end)MakeToggle("Noclip",function(v)getgenv().NOn=v end)MakeHeader("Cali Shootout Teleports")MakeTele("Car Dealership",Vector3.new(-1415.55,3.26,-111.48))MakeTele("The Bank Vault",Vector3.new(-2338.22,3.39,122.33))MakeTele("Deposit",Vector3.new(-2369.04,2.96,-20.62),true)MakeTele("The Nightclub",Vector3.new(-1170.35,-12.98,-108.24))MakeTele("Deposit",Vector3.new(-1305.52,2.96,-189.82),true)MakeTele("The Gun Shop",Vector3.new(-1624.57,3.36,-92.18))MakeTele("Gun Store 2",Vector3.new(-1894.38,3.36,-754.13),true)MakeTele("Gold Resort",Vector3.new(-1614.03,-24.79,-847.22))MakeTele("Deposit",Vector3.new(-1782.25,2.97,-802.64),true)MakeTele("Diamond Resort",Vector3.new(-2351.58,-24.67,-723.78))MakeTele("Deposit",Vector3.new(-2609.00,2.96,-492.58),true) MakeTele("Grass Job",Vector3.new(-1978.66,3.34,189.22)) local function CreateESPBox(p)if p==LP then return end;local b=Instance.new("BoxHandleAdornment")b.Name="ESPBox"b.Size=Vector3.new(4,6,4)b.Color3=Color3.fromRGB(255,0,0)b.Transparency=0.6;b.AlwaysOnTop=true;b.ZIndex=10;local function apply(c)if not c then return end;local r=c:WaitForChild("HumanoidRootPart",5)if r then b.Adornee=r;b.Parent=r end end;apply(p.Character)p.CharacterAdded:Connect(apply)end;for _,p in next,PL:GetPlayers()do CreateESPBox(p)end;PL.PlayerAdded:Connect(CreateESPBox)RS.RenderStepped:Connect(function()for _,p in next,PL:GetPlayers()do if p~=LP and p.Character and p.Character:FindFirstChild("HumanoidRootPart")then local r=p.Character.HumanoidRootPart;local b=r:FindFirstChild("ESPBox")if b then b.Visible=getgenv().EOn end end end;if getgenv().HOn then for _,p in next,PL:GetPlayers()do if p~=LP then pcall(function()local r=p.Character and p.Character:FindFirstChild("HumanoidRootPart")if r then r.Size=Vector3.new(getgenv().HSize,getgenv().HSize,getgenv().HSize)r.Transparency=getgenv().HTrans;r.BrickColor=BrickColor.new("Really blue")r.Material=Enum.Material.Neon;r.CanCollide=false end end)end end end;pcall(function()if LP.Character then if getgenv().NOn then for _,part in next,LP.Character:GetDescendants()do if part:IsA("BasePart")and part.CanCollide then part.CanCollide=false end end end;local hum=LP.Character:FindFirstChildOfClass("Humanoid")if hum then if getgenv().WOn then hum.WalkSpeed=getgenv().WVal end;if getgenv().JOn then hum.JumpPower=getgenv().JVal end end end end)end)UI.JumpRequest:Connect(function()if getgenv().IOn then pcall(function()local h=LP.Character and LP.Character:FindFirstChildOfClass("Humanoid")if h then h:ChangeState(Enum.HumanoidStateType.Jumping) end end) end end)