Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Fluent = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))()
- local SaveManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/SaveManager.lua"))()
- local InterfaceManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/InterfaceManager.lua"))()
- local Window = Fluent:CreateWindow({
- Title = "1Qlua - Универсальный хаб скриптов",
- SubTitle = "от 1Qlua | Версия 22",
- TabWidth = 160,
- Size = UDim2.fromOffset(580, 600),
- Acrylic = true,
- Theme = "Dark",
- MinimizeKey = Enum.KeyCode.LeftControl
- })
- -- Добавляем скрипт для WalkSpeed с возможностью изменения через слайдер
- _G.Walk = 16 -- Начальное значение
- if _G.WalkSpeed then
- end
- _G.WalkSpeed = true
- local LPlayer = game:GetService'Players'.LocalPlayer
- local Heartbeat = game:GetService'RunService'.Heartbeat
- Heartbeat:Connect(function()
- local hum = LPlayer.Character:FindFirstChildOfClass'Humanoid'
- if hum then
- hum.WalkSpeed = _G.Walk
- end
- end)
- local Tabs = {
- Player = Window:AddTab({ Title = "Игрок", Icon = "user" }),
- Grav = Window:AddTab({ Title = "Графика", Icon = "monitor" }),
- SlapBattles = Window:AddTab({ Title = "Slap Battles", Icon = "hand" }),
- LumberTycoon = Window:AddTab({ Title = "Lumber Tycoon 2", Icon = "tree-pine" }),
- MM2 = Window:AddTab({ Title = "MM2", Icon = "sword" }),
- Ohio = Window:AddTab({ Title = "Огайо", Icon = "map" }),
- kat = Window:AddTab({ Title = "Kat", Icon = "contact" }),
- Jailbreak = Window:AddTab({ Title = "Jailbreak", Icon = "shield" }),
- DustyTrip = Window:AddTab({ Title = "A Dusty Trip", Icon = "car" }),
- BuildBoat = Window:AddTab({ Title = "Build A Boat", Icon = "sailboat" }),
- GrowGarden = Window:AddTab({ Title = "Вырасти сад", Icon = "flower" }),
- give = Window:AddTab({ Title = " Dig to Earth's CORE", Icon = "shovel" }),
- Human = Window:AddTab({ Title = "Human Kebabs", Icon = "meh" }),
- baseplate = Window:AddTab({ Title = "baseplate", Icon = "meh" }),
- esp = Window:AddTab({ Title = "esp", Icon = "meh" }),
- aimbot = Window:AddTab({ Title = "Aimbot", Icon = "crosshair" }),
- Settings = Window:AddTab({ Title = "Настройки", Icon = "settings" })
- }
- local Options = Fluent.Options
- -- Вкладка Игрока
- do
- Tabs.Player:AddParagraph({
- Title = "Скрипты для игрока",
- Content = "Последнее обновление: 25.01.2025 | Discord: 1qlua"
- })
- -- Добавляем слайдер для изменения _G.Walk
- Tabs.Player:AddSlider("GlobalWalkSpeed", {
- Title = "Базовая скорость передвижения",
- Description = "Изменяет глобальную скорость передвижения",
- Default = 16,
- Min = 0,
- Max = 150,
- Rounding = 1,
- Callback = function(value)
- _G.Walk = value
- end
- })
- Tabs.Player:AddButton({
- Title = "Английская версия",
- Description = "Переключиться на английскую версию",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/32k6f2Ns'))()
- end
- })
- Tabs.Player:AddButton({
- Title = "Скрипт для ohio",
- Description = "Это версия для всех игр",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/JENqZVm5'))()
- end
- })
- local player = game.Players.LocalPlayer
- local defaultSpeed = 16 -- Стандартная скорость
- local currentWalkSpeed = defaultSpeed
- local humanoid
- -- Функция для обработки изменения скорости
- local function updateWalkSpeed(value)
- currentWalkSpeed = value
- if humanoid then
- humanoid.WalkSpeed = value
- end
- print("Скорость изменена на:", value)
- end
- -- Функция для обработки появления персонажа
- local function onCharacterAdded(character)
- humanoid = character:WaitForChild("Humanoid")
- humanoid.WalkSpeed = currentWalkSpeed
- -- Обработчик смерти персонажа
- humanoid.Died:Connect(function()
- -- После смерти подождем появления нового персонажа
- player.CharacterAdded:Wait()
- end)
- end
- -- Подписываемся на событие появления персонажа
- player.CharacterAdded:Connect(onCharacterAdded)
- -- Если персонаж уже есть при запуске скрипта
- if player.Character then
- onCharacterAdded(player.Character)
- end
- -- Создаем слайдер
- local Slider = Tabs.Player:AddSlider("WalkSpeedSlider", {
- Title = "Скорость передвижения",
- Description = "Изменяет скорость вашего персонажа",
- Default = defaultSpeed,
- Min = 0,
- Max = 150,
- Rounding = 1,
- Callback = updateWalkSpeed
- })
- local Slider = Tabs.Player:AddSlider("WalkSpeedSlider", {
- Title = "Высота прыжка",
- Description = "Изменяет высоту прыжка вашего персонажа",
- Default = 50,
- Min = 0,
- Max = 500,
- Rounding = 1,
- Callback = function(Value)
- local player = game.Players.LocalPlayer
- local character = player.Character or player.CharacterAdded:Wait()
- local humanoid = character:WaitForChild("Humanoid")
- humanoid.JumpPower = Value
- function setJumpPower(newPower)
- humanoid.JumpPower = newPower
- end
- end
- })
- local Slider = Tabs.Player:AddSlider("WalkSpeedSlider", {
- Title = "Изменить FOV",
- Description = "Изменяет радиус вашего персонажа",
- Default = 70,
- Min = 0,
- Max = 120,
- Rounding = 1,
- Callback = function(Value)
- local TargetFOV = Value
- workspace.CurrentCamera.FieldOfView = TargetFOV
- workspace:GetPropertyChangedSignal("CurrentCamera"):Connect(function()
- if workspace.CurrentCamera then
- workspace.CurrentCamera.FieldOfView = TargetFOV
- end
- end)
- end
- })
- Tabs.Player:AddButton({
- Title = "Полет (Нажми F)",
- Description = "Активировать возможность летать",
- Callback = function()
- loadstring("\108\111\97\100\115\116\114\105\110\103\40\103\97\109\101\58\72\116\116\112\71\101\116\40\40\39\104\116\116\112\115\58\47\47\103\105\115\116\46\103\105\116\104\117\98\117\115\101\114\99\111\110\116\101\110\116\46\99\111\109\47\109\101\111\122\111\110\101\89\84\47\98\102\48\51\55\100\102\102\57\102\48\97\55\48\48\49\55\51\48\52\100\100\100\54\55\102\100\99\100\51\55\48\47\114\97\119\47\101\49\52\101\55\52\102\52\50\53\98\48\54\48\100\102\53\50\51\51\52\51\99\102\51\48\98\55\56\55\48\55\52\101\98\51\99\53\100\50\47\97\114\99\101\117\115\37\50\53\50\48\120\37\50\53\50\48\102\108\121\37\50\53\50\48\50\37\50\53\50\48\111\98\102\108\117\99\97\116\111\114\39\41\44\116\114\117\101\41\41\40\41\10\10")()
- end
- })
- Tabs.Player:AddButton({
- Title = "Шейдеры",
- Description = "Поставить красивую графику",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/TwJZX2MC'))()
- end
- })
- local Slider = Tabs.Player:AddSlider("WalkSpeedSlider", {
- Title = "Поменять время",
- Description = "Изменяет Поменять время вашего персонажа",
- Default = defaultSpeed,
- Min = 0,
- Max = 12,
- Rounding = 1,
- Callback = function(Value)
- -- Time Changer Script for Roblox
- -- Place this in ServerScriptService or a LocalScript depending on your needs
- local Lighting = game:GetService("Lighting")
- -- Configuration - change this number to set the desired time (0-24)
- local desiredTime = Value -- Set this to your desired time (e.g., 12 for noon)
- -- Function to smoothly change the time
- local function setTime(hours)
- -- Ensure the time is within valid range (0-24)
- hours = math.clamp(hours, 0, 24)
- -- Convert to Roblox time format (0-12 for AM/PM cycle)
- local robloxTime = hours % 12
- if robloxTime == 0 then robloxTime = 12 end
- -- Set the time
- Lighting.ClockTime = robloxTime
- -- Optional: Set whether it's day or night
- if hours >= 6 and hours < 18 then
- Lighting:SetMinutesAfterMidnight(hours * 60)
- end
- print("Time set to: " .. hours .. ":00")
- end
- -- Initial time set
- setTime(desiredTime)
- end
- })
- Tabs.Player:AddButton({
- Title = "Чекпойнты",
- Description = "Создать контрольные точки",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/rz7uUmED'))()
- end
- })
- Tabs.Player:AddButton({
- Title = "Свободная камера",
- Description = "Нажмите shift + p ",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/TwJZX2MC'))()
- end
- })
- Tabs.Player:AddButton({
- Title = "Ускорение",
- Description = "Увеличить скорость передвижения",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/Zzqq3U0u'))()
- end
- })
- Tabs.Player:AddButton({
- Title = "ТП к игрокам",
- Description = "Телепортироваться к другим игрокам",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/z4HARAHs'))()
- end
- })
- Tabs.Player:AddButton({
- Title = "Играть с писюном",
- Description = "Играть ",
- Callback = function()
- loadstring(game:HttpGet("https://pastebin.com/raw/73RsNXY2"))()
- end
- })
- Tabs.Player:AddButton({
- Title = "Поменять сервер",
- Description = "Быстро поменять сервер",
- Callback = function()
- loadstring(game:HttpGet("https://pastebin.com/raw/TwJZX2MC"))()
- end
- })
- Tabs.Player:AddButton({
- Title = "Тест инжектора",
- Description = "Проверить ваш инжектор",
- Callback = function()
- loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-UNChecker-GUI-Version-27355"))()
- end
- })
- Tabs.Player:AddButton({
- Title = "DEX Explorer",
- Description = "Инструмент для исследования Roblox",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/MariyaFurmanova/Library/main/dex2.0", true))()
- end
- })
- Tabs.Player:AddButton({
- Title = "Полет на машине (Нажми V)",
- Description = "Летать на транспорте",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/9bNj1EcR'))()
- end
- })
- Tabs.Player:AddButton({
- Title = "Добавить всех в друзья",
- Description = "Отправить заявки всем игрокам",
- Callback = function()
- local plrs = game:GetService('Players')
- for i,v in pairs(plrs:GetChildren()) do
- wait(1)
- plrs.LocalPlayer:RequestFriendship(v)
- end
- end
- })
- Tabs.Player:AddButton({
- Title = "Infinite Yield",
- Description = "Админ-команды",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/Infinite-Store/Infinite-Store/main/main.lua"))()
- end
- })
- Tabs.Player:AddButton({
- Title = "Удалить стены",
- Description = "Убрать стены в игре",
- Callback = function()
- loadstring(game:HttpGet("https://pastebin.com/raw/FBKJTUyw"))()
- end
- })
- Tabs.Player:AddButton({
- Title = "Невидимость (Нажми E)",
- Description = "Стать невидимым",
- Callback = function()
- loadstring(game:HttpGet("https://pastebin.com/raw/TwJZX2MC"))()
- end
- })
- Tabs.Player:AddButton({
- Title = "Падение на месте (Нажми R)",
- Description = "Падать без перемещения",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/CTUaCKN1'))()
- end
- })
- Tabs.Player:AddButton({
- Title = "Скорость ТП",
- Description = "Инструмент для быстрой телепортации",
- Callback = function()
- loadstring(game:HttpGetAsync("https://pastebin.com/raw/tumJ5guV"))()
- end
- })
- Tabs.Player:AddButton({
- Title = "ТП по координатам",
- Description = "Телепортация с использованием координат",
- Callback = function()
- loadstring(game:HttpGetAsync("https://pastebin.com/raw/9ybHwgLa"))()
- end
- })
- Tabs.Player:AddButton({
- Title = "ТП в свой мир",
- Description = "Телепортироваться в свой мир",
- Callback = function()
- loadstring(game:HttpGetAsync("https://pastebin.com/raw/SRZJGHyq"))()
- end
- })
- Tabs.Player:AddButton({
- Title = "Очень страный скрипт",
- Description = "Просто забагался и теперь он такой ахахах",
- Callback = function()
- loadstring(game:HttpGet("https://pastebin.com/raw/fU4uWZA0"))()
- end
- })
- Tabs.Player:AddButton({
- Title = "Хаб скриптов",
- Description = "Красивый хаб скриптов",
- Callback = function()
- loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
- end
- })
- Tabs.Player:AddButton({
- Title = "Крутой GUI",
- Description = "Приятный интерфейс",
- Callback = function()
- loadstring(game:HttpGet("https://pastebin.com/raw/TwJZX2MC", true))()
- end
- })
- end
- Tabs.Grav:AddButton({
- Title = "шейдеры",
- Description = "Открывает настройку шейдеров",
- Callback = function()
- loadstring(game:HttpGet("https://pastebin.com/raw/mXAwCUEk"))()
- end
- })
- -- Вкладка Slap Battles
- do
- Tabs.SlapBattles:AddParagraph({
- Title = "Скрипты для Slap Battles",
- Content = "Последнее обновление: 2023 | Некоторые скрипты могут быть патчены"
- })
- Tabs.SlapBattles:AddButton({
- Title = "Хитбоксы",
- Description = "Расширенные хитбоксы",
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/Bilmemi/hitbox2/main/op'))()
- end
- })
- Tabs.SlapBattles:AddButton({
- Title = "Авто-автобус (Каждые 5с)",
- Description = "Автоматически использовать способность автобуса",
- Callback = function()
- while wait() do
- game:GetService("ReplicatedStorage"):WaitForChild("busmoment"):FireServer()
- wait(6)
- end
- end
- })
- Tabs.SlapBattles:AddButton({
- Title = "Бесконечное Уно",
- Description = "Никогда не заканчивается Уно",
- Callback = function()
- while wait() do
- game:GetService("ReplicatedStorage"):WaitForChild("ReverseAbility"):FireServer()
- wait(6)
- end
- end
- })
- Tabs.SlapBattles:AddButton({
- Title = "Аура убийства + Режим бога",
- Description = "Мощные боевые функции",
- Callback = function()
- loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
- end
- })
- end
- -- Вкладка Lumber Tycoon 2
- do
- Tabs.LumberTycoon:AddParagraph({
- Title = "Скрипты для Lumber Tycoon 2",
- Content = "Последнее обновление: 26.01.2025"
- })
- Tabs.LumberTycoon:AddButton({
- Title = "Infinite Yield",
- Description = "Админ-команды",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/Infinite-Store/Infinite-Store/main/main.lua"))()
- end
- })
- Tabs.LumberTycoon:AddButton({
- Title = "Kron Hub",
- Description = "Лучший скрипт для LT2",
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/DevKron/Kron_Hub/refs/heads/main/version_1.0'))("")
- end
- })
- Tabs.LumberTycoon:AddButton({
- Title = "LT2 LuaWare (Мобильный)",
- Description = "Скрипт для мобильных устройств",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/frencaliber/LuaWareLoader.lw/main/luawareloader.wtf",true))()
- end
- })
- Tabs.LumberTycoon:AddButton({
- Title = "LT2 Better Script (ПК)",
- Description = "Оптимизированный скрипт для ПК",
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/Butterisgood/Butter/main/Root2.lua'))("")
- end
- })
- Tabs.LumberTycoon:AddButton({
- Title = "Удалить защитные стены",
- Description = "Убрать защитные стены",
- Callback = function()
- while wait() do
- game:GetService("Workspace").Effects:Destroy()
- end
- end
- })
- Tabs.LumberTycoon:AddButton({
- Title = "Добавить всех в друзья",
- Description = "Отправить заявки всем игрокам",
- Callback = function()
- local plrs = game:GetService('Players')
- for i,v in pairs(plrs:GetChildren()) do
- wait(1)
- plrs.LocalPlayer:RequestFriendship(v)
- end
- end
- })
- end
- -- Вкладка MM2
- do
- Tabs.MM2:AddParagraph({
- Title = "Скрипты для Murder Mystery 2",
- Content = "Последнее обновление: 10.05.2024 | В разработке"
- })
- Tabs.MM2:AddButton({
- Title = "ESP",
- Description = "Видеть игроков сквозь стены",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/fkVSAXZ3'))()
- end
- })
- end
- -- Вкладка Огайо
- do
- Tabs.Ohio:AddParagraph({
- Title = "Скрипты для Огайо",
- Content = "Последнее обновление: 08.05.2025"
- })
- Tabs.Ohio:AddParagraph({
- Title = "Игрок",
- Content = ""
- })
- Tabs.Ohio:AddButton({
- Title = "ТП по CTRL+Клик",
- Description = "Телепортироваться к месту клика",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/icB69Hhf'))()
- end
- })
- Tabs.Ohio:AddButton({
- Title = "Скорость ТП",
- Description = "Инструмент для быстрой телепортации",
- Callback = function()
- loadstring(game:HttpGetAsync("https://pastebin.com/raw/tumJ5guV"))()
- end
- })
- Tabs.Ohio:AddButton({
- Title = "ТП к игроку",
- Description = "Телепортироваться к другим игрокам",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/z4HARAHs'))()
- end
- })
- Tabs.Ohio:AddButton({
- Title = "ТП к местам",
- Description = "Телепортация в разные места",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/nrJ7cVcJ'))()
- end
- })
- Tabs.Ohio:AddButton({
- Title = "ESP",
- Description = "Видеть сквозь стены",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/r97SAaUa'))()
- end
- })
- Tabs.Ohio:AddParagraph({
- Title = "Телепорты",
- Content = ""
- })
- Tabs.Ohio:AddButton({
- Title = "Патроны для оружия",
- Description = "телепортирует вас",
- Callback = function()
- loadstring(game:HttpGet"https://pastebin.com/raw/6Frtt9qE")()
- end
- })
- Tabs.Ohio:AddButton({
- Title = "ТП к кейсам",
- Description = "выберите нужный кейс",
- Callback = function()
- loadstring(game:HttpGet"https://pastebin.com/raw/VvnWtHhJ")()
- end
- })
- Tabs.Ohio:AddButton({
- Title = "Мини хаб",
- Description = "Скрипты 1Qlua для Огайо",
- Callback = function()
- loadstring(game:HttpGet"https://pastebin.com/raw/fef2FzGc")()
- end
- })
- Tabs.Ohio:AddParagraph({
- Title = "Авто-фарм",
- Content = ""
- })
- Tabs.Ohio:AddButton({
- Title = "Авто-фарм хлама V2",
- Description = "Автоматический сбор хлама",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/HNwdknXk'))()
- end
- })
- Tabs.Ohio:AddButton({
- Title = "Автофарм Банкоматов",
- Description = "Автоматический фарм банкоматов",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/szznrYvx'))()
- end
- })
- end
- -- Добавляем слайдер для изменения _G.Walk
- Tabs.kat:AddSlider("GlobalWalkSpeed", {
- Title = "Базовая скорость передвижения",
- Description = "Изменяет глобальную скорость передвижения",
- Default = 16,
- Min = 0,
- Max = 25,
- Rounding = 1,
- Callback = function(value)
- _G.Walk = value
- end
- })
- -- Создаем слайдер для прыгучести
- Tabs.kat:AddSlider("JumpPower", {
- Title = "Прыгучесть",
- Description = "Изменяет высоту прыжка",
- Default = 50,
- Min = 0,
- Max = 200,
- Rounding = 1,
- Callback = function(value)
- -- Сохраняем значение для последующего применения
- getgenv().JumpPowerValue = value
- -- Пытаемся применить к текущему персонажу
- pcall(function()
- local player = game:GetService("Players").LocalPlayer
- if player.Character then
- local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
- if humanoid then
- humanoid.JumpPower = value
- end
- end
- end)
- end
- })
- -- Инициализируем глобальную переменную, если ее нет
- if not getgenv().JumpPowerValue then
- getgenv().JumpPowerValue = 50
- end
- -- Функция для применения настроек прыгучести
- local function applyJumpPower(character)
- pcall(function()
- -- Ждем появления Humanoid (может быть задержка после смерти)
- local humanoid = character:WaitForChild("Humanoid", 10)
- if humanoid then
- -- Устанавливаем сохраненное значение
- humanoid.JumpPower = getgenv().JumpPowerValue
- -- Защита от сброса (повторяем установку через небольшой интервал)
- for _ = 1, 3 do
- task.wait(0.5)
- humanoid.JumpPower = getgenv().JumpPowerValue
- end
- end
- end)
- end
- -- Обработчик добавления нового персонажа
- game:GetService("Players").LocalPlayer.CharacterAdded:Connect(function(character)
- applyJumpPower(character)
- end)
- -- Применяем к текущему персонажу, если он существует
- if game:GetService("Players").LocalPlayer.Character then
- applyJumpPower(game:GetService("Players").LocalPlayer.Character)
- end
- -- Защита от анти-читы систем (необязательно, но рекомендуется)
- task.spawn(function()
- while task.wait(1) do
- pcall(function()
- local humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
- if humanoid and humanoid.JumpPower ~= getgenv().JumpPowerValue then
- humanoid.JumpPower = getgenv().JumpPowerValue
- end
- end)
- end
- end)
- local Slider = Tabs.kat:AddSlider("WalkSpeedSlider", {
- Title = "Изменить FOV",
- Description = "Изменяет радиус вашего персонажа",
- Default = 70,
- Min = 0,
- Max = 120,
- Rounding = 1,
- Callback = function(Value)
- local TargetFOV = Value
- workspace.CurrentCamera.FieldOfView = TargetFOV
- workspace:GetPropertyChangedSignal("CurrentCamera"):Connect(function()
- if workspace.CurrentCamera then
- workspace.CurrentCamera.FieldOfView = TargetFOV
- end
- end)
- end
- })
- Tabs.kat:AddButton({
- Title = "Английская версия",
- Description = "Переключиться на английскую версию",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/32k6f2Ns'))()
- end
- })
- Tabs.kat:AddButton({
- Title = "удалить стены",
- Description = "удаляешь стены которые мешают",
- Callback = function()
- loadstring(game:HttpGet("https://pastebin.com/raw/FBKJTUyw"))()
- end
- })
- Tabs.kat:AddButton({
- Title = "Падение на месте (Нажми R)",
- Description = "Падать без перемещения",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/CTUaCKN1'))()
- end
- })
- Tabs.kat:AddButton({
- Title = "ESP",
- Description = "Видеть сквозь стены",
- Callback = function()
- loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
- end
- })
- Tabs.kat:AddButton({
- Title = "kill aura",
- Description = "стреляешь куда угодно поподаешь",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/mk1ge1hm'))()
- end
- })
- -- Jailbreak Tab
- do
- Tabs.Jailbreak:AddParagraph({
- Title = "Скрипты для Jailbreak",
- Content = "Последнее обновление: 22.02.2025"
- })
- Tabs.Jailbreak:AddButton({
- Title = "Автофарм",
- Description = "Автоматический сбор денег",
- Callback = function()
- loadstring(game:HttpGet('http://scripts.projectauto.xyz/AutoRobV5'))()
- end
- })
- Tabs.Jailbreak:AddButton({
- Title = "ESP (сквозь стены)",
- Description = "Видеть сквозь стены",
- Callback = function()
- loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
- end
- })
- Tabs.Jailbreak:AddButton({
- Title = "ТП по CTRL+Клик",
- Description = "Телепортация к выбранной точке",
- Callback = function()
- loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
- end
- })
- Tabs.Jailbreak:AddButton({
- Title = "Полёт на машине (клавиша V)",
- Description = "Летать на транспорте",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/9bNj1EcR'))()
- end
- })
- Tabs.Jailbreak:AddButton({
- Title = "Ускорение",
- Description = "Увеличение скорости передвижения",
- Callback = function()
- loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
- end
- })
- Tabs.Jailbreak:AddButton({
- Title = "Infinite Yield (админ-команды)",
- Description = "Административные команды",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/Infinite-Store/Infinite-Store/main/main.lua"))()
- end
- })
- end
- -- A Dusty Trip Tab
- do
- Tabs.DustyTrip:AddParagraph({
- Title = "Скрипты для A Dusty Trip",
- Content = "Различные скрипты для A Dusty Trip"
- })
- Tabs.DustyTrip:AddButton({
- Title = "Infinite Yield",
- Description = "Административные команды",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/Infinite-Store/Infinite-Store/main/main.lua"))()
- end
- })
- Tabs.DustyTrip:AddButton({
- Title = "DEX Explorer (инструмент)",
- Description = "Инструмент исследования Roblox",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/infyiff/backup/main/dex.lua"))()
- end
- })
- Tabs.DustyTrip:AddParagraph({
- Title = "Скрипты игрока",
- Content = "Различные модификации игрока"
- })
- Tabs.DustyTrip:AddButton({
- Title = "Полёт на машине (клавиша V)",
- Description = "Летать на транспорте",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/9bNj1EcR'))()
- end
- })
- Tabs.DustyTrip:AddButton({
- Title = "Скорость 5000",
- Description = "Очень высокая скорость",
- Callback = function()
- _G.Walk = 5000
- if _G.WalkSpeed then
- error('loop is running!')
- end
- _G.WalkSpeed = true
- local LPlayer = game:GetService'Players'.LocalPlayer
- local Heartbeat = game:GetService'RunService'.Heartbeat
- Heartbeat:Connect(function()
- local hum = LPlayer.Character:FindFirstChildOfClass'Humanoid'
- if hum then
- hum.WalkSpeed = _G.Walk
- end
- end)
- end
- })
- Tabs.DustyTrip:AddButton({
- Title = "Скорость 1000",
- Description = "Очень быстрая скорость",
- Callback = function()
- _G.Walk = 1000
- if _G.WalkSpeed then
- error('loop is running!')
- end
- _G.WalkSpeed = true
- local LPlayer = game:GetService'Players'.LocalPlayer
- local Heartbeat = game:GetService'RunService'.Heartbeat
- Heartbeat:Connect(function()
- local hum = LPlayer.Character:FindFirstChildOfClass'Humanoid'
- if hum then
- hum.WalkSpeed = _G.Walk
- end
- end)
- end
- })
- Tabs.DustyTrip:AddButton({
- Title = "Скорость 50",
- Description = "Умеренное ускорение",
- Callback = function()
- _G.Walk = 50
- if _G.WalkSpeed then
- error('loop is running!')
- end
- _G.WalkSpeed = true
- local LPlayer = game:GetService'Players'.LocalPlayer
- local Heartbeat = game:GetService'RunService'.Heartbeat
- Heartbeat:Connect(function()
- local hum = LPlayer.Character:FindFirstChildOfClass'Humanoid'
- if hum then
- hum.WalkSpeed = _G.Walk
- end
- end)
- end
- })
- Tabs.DustyTrip:AddButton({
- Title = "Скорость 25",
- Description = "Небольшое ускорение",
- Callback = function()
- _G.Walk = 25
- if _G.WalkSpeed then
- error('loop is running!')
- end
- _G.WalkSpeed = true
- local LPlayer = game:GetService'Players'.LocalPlayer
- local Heartbeat = game:GetService'RunService'.Heartbeat
- Heartbeat:Connect(function()
- local hum = LPlayer.Character:FindFirstChildOfClass'Humanoid'
- if hum then
- hum.WalkSpeed = _G.Walk
- end
- end)
- end
- })
- end
- Tabs.give:AddButton({
- Title = "выдать деньги",
- Description = "выдать деньги",
- Callback = function()
- local args = {
- "Cash",
- 241561515
- }
- game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("AddRewardEvent"):FireServer(unpack(args))
- end
- })
- Tabs.give:AddButton({
- Title = "выдать спины",
- Description = "",
- Callback = function()
- local args = {
- "Spins",
- 51
- }
- game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("AddRewardEvent"):FireServer(unpack(args))
- end
- })
- Tabs.give:AddButton({
- Title = "выдать лутшого пета",
- Description = "",
- Callback = function()
- local args = {
- "Lava Dominus"
- }
- game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("PetCageEvent"):FireServer(unpack(args))
- end
- })
- Tabs.give:AddButton({
- Title = "выдать 25к",
- Description = "",
- Callback = function()
- local args = {
- 2
- }
- game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("SpinPrizeEvent"):FireServer(unpack(args))
- end
- })
- Tabs.give:AddButton({
- Title = "выдать 375 гемов",
- Description = "",
- Callback = function()
- local args = {
- 5
- }
- game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("SpinPrizeEvent"):FireServer(unpack(args))
- end
- })
- Tabs.give:AddButton({
- Title = "выдать спины",
- Description = "",
- Callback = function()
- local args = {
- 3
- }
- game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("SpinPrizeEvent"):FireServer(unpack(args))
- end
- })
- Tabs.give:AddButton({
- Title = "X10 МОНЕТ",
- Description = "",
- Callback = function()
- loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
- end
- })
- -- Build A Boat Tab
- do
- Tabs.BuildBoat:AddParagraph({
- Title = "Скрипты для Build A Boat",
- Content = "Скрипты для Build A Boat For Treasure"
- })
- Tabs.BuildBoat:AddButton({
- Title = "Автофарм",
- Description = "Автоматический фарм",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/24e7Skmv'))()
- end
- })
- Tabs.BuildBoat:AddButton({
- Title = "Полёт (клавиша F)",
- Description = "Активировать полёт",
- Callback = function()
- loadstring("\108\111\97\100\115\116\114\105\110\103\40\103\97\109\101\58\72\116\116\112\71\101\116\40\40\39\104\116\116\112\115\58\47\47\103\105\115\116\46\103\105\116\104\117\98\117\115\101\114\99\111\110\116\101\110\116\46\99\111\109\47\109\101\111\122\111\110\101\89\84\47\98\102\48\51\55\100\102\102\57\102\48\97\55\48\48\49\55\51\48\52\100\100\100\54\55\102\100\99\100\51\55\48\47\114\97\119\47\101\49\52\101\55\52\102\52\50\53\98\48\54\48\100\102\53\50\51\51\52\51\99\102\51\48\98\55\56\55\48\55\52\101\98\51\99\53\100\50\47\97\114\99\101\117\115\37\50\53\50\48\120\37\50\53\50\48\102\108\121\37\50\53\50\48\50\37\50\53\50\48\111\98\102\108\117\99\97\116\111\114\39\41\44\116\114\117\101\41\41\40\41\10\10")()
- end
- })
- Tabs.BuildBoat:AddButton({
- Title = "Ускорение",
- Description = "Увеличение скорости передвижения",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/EdUyxN7Z'))()
- end
- })
- end
- -- Grow a Garden Tab
- do
- Tabs.GrowGarden:AddParagraph({
- Title = "Скрипты для Grow a Garden",
- Content = "Различные скрипты для Grow a Garden"
- })
- Tabs.GrowGarden:AddButton({
- Title = "Автофарм",
- Description = "Автоматический фарм",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/UZU3cmQZ'))()
- end
- })
- Tabs.GrowGarden:AddButton({
- Title = "Ускорение",
- Description = "Увеличение скорости передвижения",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/Zzqq3U0u'))()
- end
- })
- Tabs.GrowGarden:AddParagraph({
- Title = "Скрипты сообщества",
- Content = "Скрипты, созданные другими"
- })
- Tabs.GrowGarden:AddButton({
- Title = "Хороший хаб",
- Description = "Качественная коллекция скриптов",
- Callback = function()
- loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
- end
- })
- Tabs.GrowGarden:AddButton({
- Title = "Хаб без лагов",
- Description = "Оптимизированная производительность",
- Callback = function()
- loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
- end
- })
- end
- Tabs.Human:AddButton({
- Title = "килл алл",
- Description = "",
- Callback = function()
- -- Основной скрипт для автоматического нацеливания и атаки
- local player = game:GetService("Players").LocalPlayer
- local running = true -- Флаг работы скрипта
- -- Функция для остановки через консоль
- _G.StopAutoSkewer = function()
- running = false
- return "Скрипт AutoSkewer остановлен!"
- end
- -- Поиск ближайшего игрока
- local function findNearestPlayer()
- local character = player.Character or player.CharacterAdded:Wait()
- local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
- local nearestPlayer = nil
- local minDistance = math.huge
- for _, otherPlayer in ipairs(game:GetService("Players"):GetPlayers()) do
- if otherPlayer ~= player and otherPlayer.Character then
- local otherRoot = otherPlayer.Character:FindFirstChild("HumanoidRootPart")
- if otherRoot then
- local distance = (humanoidRootPart.Position - otherRoot.Position).Magnitude
- if distance < minDistance then
- minDistance = distance
- nearestPlayer = otherPlayer
- end
- end
- end
- end
- return nearestPlayer
- end
- print([[AutoSkewer запущен!
- Команда для остановки: StopAutoSkewer()]])
- -- Основной цикл
- while running do
- task.wait(0.1) -- Частота обновления (10 раз в секунду)
- local target = findNearestPlayer()
- if target then
- local args = { game:GetService("Players"):WaitForChild(target.Name) }
- game:GetService("ReplicatedStorage").Remotes.Client.SkewerHit:FireServer(unpack(args))
- end
- end
- print("AutoSkewer завершил работу.")
- end
- })
- Tabs.Human:AddButton({
- Title = "остановить килл алл",
- Description = "",
- Callback = function()
- loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
- end
- })
- Tabs.baseplate:AddButton({
- Title = "Скрискрипт для baseplate",
- Description = "запускает скрипт",
- Callback = function()
- loadstring(game:HttpGet("https://pastebin.com/raw/aAYx0WZG"))()
- end
- })
- Tabs.esp:AddButton({
- Title = "Esp",
- Description = "Видить скось стены игроков",
- Callback = function()
- loadstring(game:HttpGet('https://pastebin.com/raw/yKvD4NzC'))()
- end
- })
- -- Settings Tab
- SaveManager:SetLibrary(Fluent)
- InterfaceManager:SetLibrary(Fluent)
- SaveManager:IgnoreThemeSettings()
- InterfaceManager:SetFolder("1Qlua")
- SaveManager:SetFolder("1Qlua/UniversalScriptHub")
- InterfaceManager:BuildInterfaceSection(Tabs.Settings)
- SaveManager:BuildConfigSection(Tabs.Settings)
- -- Добавляем Aimbot в конец (новая вкладка)
- local players = game:GetService("Players")
- local plr = players.LocalPlayer
- local wrk = game:GetService("Workspace")
- local camera = wrk.CurrentCamera
- local mouse = plr:GetMouse()
- -- Aimbot variables
- local aimbotEnabled = false
- local aimParts = {"Head"}
- local aiming = false
- local predictionStrength = 0.065
- local smoothing = 0.05
- local aimFov = 100
- local wallCheck = true
- local teamCheck = false
- local currentTarget = nil
- -- Color system
- local colorOptions = {
- "Красный",
- "Зеленый",
- "Синий",
- "Желтый",
- "Фиолетовый"
- }
- local colorValues = {
- ["Красный"] = Color3.fromRGB(255, 0, 0),
- ["Зеленый"] = Color3.fromRGB(0, 255, 0),
- ["Синий"] = Color3.fromRGB(0, 0, 255),
- ["Желтый"] = Color3.fromRGB(255, 255, 0),
- ["Фиолетовый"] = Color3.fromRGB(128, 0, 128)
- }
- local circleColor = colorValues["Красный"]
- local targetedColor = colorValues["Зеленый"]
- -- FOV Circle
- local fovCircle = Drawing.new("Circle")
- fovCircle.Thickness = 2
- fovCircle.Radius = aimFov
- fovCircle.Filled = false
- fovCircle.Color = circleColor
- fovCircle.Visible = false
- -- Aimbot functions
- local function checkTeam(player)
- return teamCheck and player.Team == plr.Team
- end
- local function getClosestPart(character)
- local closestPart = nil
- local shortestDistance = aimFov
- for _, partName in ipairs(aimParts) do
- local part = character:FindFirstChild(partName)
- if part then
- local partPos = camera:WorldToViewportPoint(part.Position)
- if partPos.Z > 0 then
- local distance = (Vector2.new(partPos.X, partPos.Y) - Vector2.new(mouse.X, mouse.Y)).Magnitude
- if distance < shortestDistance then
- shortestDistance = distance
- closestPart = part
- end
- end
- end
- end
- return closestPart
- end
- local function getTarget()
- local closestPlayer = nil
- local closestPart = nil
- local shortestDistance = aimFov
- for _, player in ipairs(players:GetPlayers()) do
- if player ~= plr and player.Character and not checkTeam(player) then
- local part = getClosestPart(player.Character)
- if part then
- local distance = (Vector2.new(camera:WorldToViewportPoint(part.Position).X, camera:WorldToViewportPoint(part.Position).Y) - Vector2.new(mouse.X, mouse.Y)).Magnitude
- if distance < shortestDistance then
- shortestDistance = distance
- closestPlayer = player
- closestPart = part
- end
- end
- end
- end
- return closestPlayer, closestPart
- end
- local function aimAt(player, part)
- if player and part then
- local predictedPosition = part.Position + (player.Character.HumanoidRootPart.Velocity * predictionStrength)
- camera.CFrame = camera.CFrame:Lerp(CFrame.new(camera.CFrame.Position, predictedPosition), smoothing)
- end
- end
- -- Aimbot UI
- Tabs.aimbot:AddToggle("AimbotEnabled", {
- Title = "Включить Aimbot",
- Default = false,
- Callback = function(Value)
- aimbotEnabled = Value
- fovCircle.Visible = Value
- end
- })
- Tabs.aimbot:AddDropdown("AimPart", {
- Title = "Часть тела",
- Values = {"Head", "HumanoidRootPart", "Torso"},
- Default = "Head",
- Callback = function(Value)
- aimParts = {Value}
- end
- })
- Tabs.aimbot:AddSlider("Smoothing", {
- Title = "Сглаживание",
- Min = 1,
- Max = 100,
- Default = 37,
- Rounding = 0,
- Callback = function(Value)
- smoothing = 1 - (Value / 100)
- end
- })
- Tabs.aimbot:AddSlider("Prediction", {
- Title = "Предсказание",
- Min = 0,
- Max = 0.2,
- Default = 0.02,
- Rounding = 3,
- Callback = function(Value)
- predictionStrength = Value
- end
- })
- Tabs.aimbot:AddSlider("FOV", {
- Title = "Поле зрения",
- Min = 10,
- Max = 1000,
- Default = 50,
- Rounding = 0,
- Callback = function(Value)
- aimFov = Value
- fovCircle.Radius = Value
- end
- })
- Tabs.aimbot:AddToggle("WallCheck", {
- Title = "Проверка стен",
- Default = false,
- Callback = function(Value)
- wallCheck = Value
- end
- })
- Tabs.aimbot:AddToggle("TeamCheck", {
- Title = "Проверка команды",
- Default = false,
- Callback = function(Value)
- teamCheck = Value
- end
- })
- Tabs.aimbot:AddDropdown("FOVColor", {
- Title = "Цвет FOV",
- Values = colorOptions,
- Default = "Красный",
- Callback = function(Value)
- circleColor = colorValues[Value]
- fovCircle.Color = circleColor
- end
- })
- Tabs.aimbot:AddDropdown("TargetColor", {
- Title = "Цвет цели",
- Values = colorOptions,
- Default = "Зеленый",
- Callback = function(Value)
- targetedColor = colorValues[Value]
- end
- })
- -- Main loop
- game:GetService("RunService").RenderStepped:Connect(function()
- if aimbotEnabled then
- fovCircle.Position = Vector2.new(mouse.X, mouse.Y + 36)
- if aiming then
- if currentTarget then
- fovCircle.Color = targetedColor
- aimAt(currentTarget, currentTarget.Character[aimParts[1]])
- else
- currentTarget = getTarget()
- end
- else
- fovCircle.Color = circleColor
- currentTarget = nil
- end
- end
- end)
- mouse.Button2Down:Connect(function()
- if aimbotEnabled then
- aiming = true
- end
- end)
- mouse.Button2Up:Connect(function()
- if aimbotEnabled then
- aiming = false
- end
- end)
- Window:SelectTab(1)
- Fluent:Notify({
- Title = "1Qlua",
- Content = "Universal Script Hub успешно загружен!",
- Duration = 8
- })
- SaveManager:LoadAutoloadConfig()
- loadstring(game:HttpGet("https://pastebin.com/raw/wqQAEbvJ"))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement