-- LeoFox ULTRA IMBA Super Script ❤️💝🔥 | 99 Nights | Mobile/Delta local Players = game:GetService("Players") local RunService = game:GetService("RunService") local UIS = game:GetService("UserInputService") local TweenService = game:GetService("TweenService") local player = Players.LocalPlayer -- Персонаж local char, hum, hrp local function setup(c) char = c hum = c:WaitForChild("Humanoid") hrp = c:WaitForChild("HumanoidRootPart") end setup(player.Character or player.CharacterAdded:Wait()) player.CharacterAdded:Connect(setup) -- TP координаты local BASE = Vector3.new(125,2,-47) local END = Vector3.new(2248,-3,-20) -- состояния local infJump=false local highJump=false local noclip=false local speed=false local god=false local antiFall=false local autoLoot=false local flight=false local hover=false local superDash=false local antiStuck=true local autoHeal=false local VIPOpened=false -- TP точки local TPPoints = {} local TPNames = {} local currentIndex = 0 -- GUI local gui = Instance.new("ScreenGui", player.PlayerGui) gui.ResetOnSpawn=false -- Draggable function local function drag(obj) local dragging,d,i,p obj.InputBegan:Connect(function(input) if input.UserInputType==Enum.UserInputType.Touch or input.UserInputType==Enum.UserInputType.MouseButton1 then dragging=true i=input p=obj.Position input.Changed:Connect(function() if input.UserInputState==Enum.UserInputState.End then dragging=false end end) end end) obj.InputChanged:Connect(function(input2) if dragging and (input2.UserInputType==Enum.UserInputType.Touch or input2.UserInputType==Enum.UserInputType.MouseMovement) then local delta=input2.Position-i.Position obj.Position=UDim2.new(p.X.Scale,p.X.Offset+delta.X,p.Y.Scale,p.Y.Offset+delta.Y) end end) end -- LeoFox надпись с пульсацией local tag=Instance.new("TextLabel",gui) tag.Size=UDim2.new(0,220,0,40) tag.Position=UDim2.new(0.5,-110,0.05,0) tag.BackgroundColor3=Color3.fromRGB(0,0,0) tag.BackgroundTransparency=0.4 tag.Text="LEO FOX ❤️💝🔥" tag.TextColor3=Color3.fromRGB(255,255,0) tag.Font=Enum.Font.GothamBlack tag.TextScaled=true drag(tag) -- Tween для пульсации spawn(function() while true do TweenService:Create(tag, TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), {TextStrokeTransparency=0}):Play() wait(1) TweenService:Create(tag, TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), {TextStrokeTransparency=0.8}):Play() wait(1) end end) -- Меню local menu=Instance.new("Frame",gui) menu.Size=UDim2.new(0,220,0,350) menu.Position=UDim2.new(0.5,-110,0.5,-175) menu.BackgroundColor3=Color3.fromRGB(10,10,10) menu.BorderColor3=Color3.fromRGB(255,0,0) menu.BorderSizePixel=3 drag(menu) -- ScrollingFrame для листания кнопок local scroll = Instance.new("ScrollingFrame",menu) scroll.Size=UDim2.new(1,0,1,0) scroll.CanvasSize=UDim2.new(0,0,0,1000) scroll.ScrollBarThickness=5 scroll.BackgroundTransparency=1 -- Функция для создания кнопок local buttons = {} local yPos = 10 local function addButton(txt, callback) local b=Instance.new("TextButton",scroll) b.Size=UDim2.new(0,200,0,30) b.Position=UDim2.new(0,10,0,yPos) b.BackgroundColor3=Color3.fromRGB(20,20,20) b.BorderColor3=Color3.fromRGB(255,0,0) b.Text=txt b.TextColor3=Color3.fromRGB(255,50,50) b.Font=Enum.Font.GothamBold b.TextScaled=true b.MouseButton1Click:Connect(callback) table.insert(buttons,b) -- Neon-glow анимация spawn(function() while b and b.Parent do TweenService:Create(b, TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), {TextColor3=Color3.fromRGB(255,50,50)}):Play() wait(1) TweenService:Create(b, TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), {TextColor3=Color3.fromRGB(0,255,0)}):Play() wait(1) end end) yPos = yPos + 40 end -- Кнопки меню addButton("INF JUMP", function() infJump = not infJump end) addButton("HIGH JUMP", function() highJump = not highJump end) addButton("NOCLIP", function() noclip = not noclip end) addButton("SPEED x5", function() speed = not speed; hum.WalkSpeed = speed and 80 or 16 end) addButton("GOD MODE", function() god = not god end) addButton("ANTI FALL", function() antiFall = not antiFall end) addButton("TP BASE", function() hrp.CFrame = CFrame.new(BASE) end) addButton("TP END", function() hrp.CFrame = CFrame.new(END) end) addButton("SET POINT", function() table.insert(TPPoints, hrp.Position) table.insert(TPNames, "Point "..#TPPoints) currentIndex = #TPPoints end) addButton("PREV TP", function() if #TPPoints>0 then currentIndex = currentIndex -1 if currentIndex <1 then currentIndex=#TPPoints end end end) addButton("NEXT TP", function() if #TPPoints>0 then currentIndex = currentIndex +1 if currentIndex > #TPPoints then currentIndex=1 end end end) addButton("TELEPORT", function() if #TPPoints>0 and currentIndex>0 then hrp.CFrame=CFrame.new(TPPoints[currentIndex]) end end) addButton("AUTO LOOT", function() autoLoot = not autoLoot end) addButton("FLIGHT / HOVER", function() flight = not flight end) addButton("SUPER DASH", function() superDash = not superDash end) addButton("AUTO HEAL", function() autoHeal = not autoHeal end) -- 🔥 Новая кнопка VIP addButton("ОТКРЫТЬ VIP", function() VIPOpened = not VIPOpened for _,v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") and v.Name:find("VIPWall") then v.CanCollide = not VIPOpened v.Transparency = VIPOpened and 0.8 or 0 end end end) -- Toggle меню local open=true local t=Instance.new("TextButton",gui) t.Size=UDim2.new(0,90,0,30) t.Position=UDim2.new(0.02,0,0.5,0) t.Text="CHEAT" t.BackgroundColor3=Color3.fromRGB(0,0,0) t.TextColor3=Color3.fromRGB(255,0,0) t.Font=Enum.Font.GothamBlack t.TextScaled=true drag(t) t.MouseButton1Click:Connect(function() open = not open menu.Visible = open end) -- Mechanics UIS.JumpRequest:Connect(function() if infJump then hum:ChangeState(Enum.HumanoidStateType.Jumping) if highJump then hrp.Velocity = hrp.Velocity + Vector3.new(0,50,0) end end end) RunService.RenderStepped:Connect(function() if char then -- noclip for _,v in pairs(char:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = not noclip end end -- god mode if god and hum and hum.Health