--[[ ILAS026899 MINI MOBILE HUB Version: 2.1 (Ultra Compact) --]] local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local SpeedIn = Instance.new("TextBox") local JumpIn = Instance.new("TextBox") local ToggleBtn = Instance.new("TextButton") local UICorner = Instance.new("UICorner") -- Настройка UI ScreenGui.Parent = game.CoreGui ScreenGui.ResetOnSpawn = false MainFrame.Name = "IlasMini" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) MainFrame.Position = UDim2.new(0.5, -75, 0.3, 0) MainFrame.Size = UDim2.new(0, 150, 0, 130) -- Очень маленький размер MainFrame.Active = true MainFrame.Draggable = true UICorner.CornerRadius = UDim.new(0, 8) UICorner.Parent = MainFrame Title.Parent = MainFrame Title.Size = UDim2.new(1, 0, 0, 30) Title.Text = "ILAS MINI" Title.TextColor3 = Color3.fromRGB(0, 255, 150) Title.BackgroundTransparency = 1 Title.TextSize = 14 -- Поле скорости SpeedIn.Parent = MainFrame SpeedIn.Position = UDim2.new(0.1, 0, 0.3, 0) SpeedIn.Size = UDim2.new(0.8, 0, 0, 30) SpeedIn.PlaceholderText = "Speed (16)" SpeedIn.Text = "" SpeedIn.BackgroundColor3 = Color3.fromRGB(45, 45, 45) SpeedIn.TextColor3 = Color3.new(1, 1, 1) SpeedIn.TextSize = 12 -- Поле прыжка JumpIn.Parent = MainFrame JumpIn.Position = UDim2.new(0.1, 0, 0.6, 0) JumpIn.Size = UDim2.new(0.8, 0, 0, 30) JumpIn.PlaceholderText = "Jump (50)" JumpIn.Text = "" JumpIn.BackgroundColor3 = Color3.fromRGB(45, 45, 45) JumpIn.TextColor3 = Color3.new(1, 1, 1) JumpIn.TextSize = 12 -- Кнопка сворачивания (микро-размер) ToggleBtn.Parent = ScreenGui ToggleBtn.Size = UDim2.new(0, 40, 0, 40) ToggleBtn.Position = UDim2.new(0, 5, 0.5, 0) ToggleBtn.Text = "ILAS" ToggleBtn.BackgroundColor3 = Color3.fromRGB(0, 255, 150) ToggleBtn.TextColor3 = Color3.new(0, 0, 0) local btnCorner = Instance.new("UICorner") btnCorner.CornerRadius = UDim.new(1, 0) -- Круглая кнопка btnCorner.Parent = ToggleBtn -- Логика (Безопасная) local lp = game.Players.LocalPlayer local function getHum() local char = lp.Character or lp.CharacterAdded:Wait() return char:WaitForChild("Humanoid") end SpeedIn.FocusLost:Connect(function() local hum = getHum() local val = tonumber(SpeedIn.Text) if val then hum.WalkSpeed = val end end) JumpIn.FocusLost:Connect(function() local hum = getHum() local val = tonumber(JumpIn.Text) if val then hum.JumpPower = val hum.UseJumpPower = true end end) ToggleBtn.MouseButton1Click:Connect(function() MainFrame.Visible = not MainFrame.Visible end)