Advertisement
kill21_2

FREE SCRIPT

May 20th, 2025 (edited)
12,959
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 48.22 KB | None | 0 0
  1. local Fluent = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))()
  2. local SaveManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/SaveManager.lua"))()
  3. local InterfaceManager = loadstring(game:HttpGet("https://raw.githubusercontent.com/dawid-scripts/Fluent/master/Addons/InterfaceManager.lua"))()
  4.  
  5. local Window = Fluent:CreateWindow({
  6. Title = "1Qlua - Универсальный хаб скриптов",
  7. SubTitle = "от 1Qlua | Версия 22",
  8. TabWidth = 160,
  9. Size = UDim2.fromOffset(580, 600),
  10. Acrylic = true,
  11. Theme = "Dark",
  12. MinimizeKey = Enum.KeyCode.LeftControl
  13. })
  14.  
  15. -- Добавляем скрипт для WalkSpeed с возможностью изменения через слайдер
  16. _G.Walk = 16 -- Начальное значение
  17. if _G.WalkSpeed then
  18.  
  19. end
  20. _G.WalkSpeed = true
  21. local LPlayer = game:GetService'Players'.LocalPlayer
  22. local Heartbeat = game:GetService'RunService'.Heartbeat
  23. Heartbeat:Connect(function()
  24. local hum = LPlayer.Character:FindFirstChildOfClass'Humanoid'
  25. if hum then
  26. hum.WalkSpeed = _G.Walk
  27. end
  28. end)
  29.  
  30. local Tabs = {
  31. Player = Window:AddTab({ Title = "Игрок", Icon = "user" }),
  32. Grav = Window:AddTab({ Title = "Графика", Icon = "monitor" }),
  33. SlapBattles = Window:AddTab({ Title = "Slap Battles", Icon = "hand" }),
  34. LumberTycoon = Window:AddTab({ Title = "Lumber Tycoon 2", Icon = "tree-pine" }),
  35. MM2 = Window:AddTab({ Title = "MM2", Icon = "sword" }),
  36. Ohio = Window:AddTab({ Title = "Огайо", Icon = "map" }),
  37. kat = Window:AddTab({ Title = "Kat", Icon = "contact" }),
  38. Jailbreak = Window:AddTab({ Title = "Jailbreak", Icon = "shield" }),
  39. DustyTrip = Window:AddTab({ Title = "A Dusty Trip", Icon = "car" }),
  40. BuildBoat = Window:AddTab({ Title = "Build A Boat", Icon = "sailboat" }),
  41. GrowGarden = Window:AddTab({ Title = "Вырасти сад", Icon = "flower" }),
  42. give = Window:AddTab({ Title = " Dig to Earth's CORE", Icon = "shovel" }),
  43. Human = Window:AddTab({ Title = "Human Kebabs", Icon = "meh" }),
  44. baseplate = Window:AddTab({ Title = "baseplate", Icon = "meh" }),
  45. esp = Window:AddTab({ Title = "esp", Icon = "meh" }),
  46. aimbot = Window:AddTab({ Title = "Aimbot", Icon = "crosshair" }),
  47. Settings = Window:AddTab({ Title = "Настройки", Icon = "settings" })
  48. }
  49.  
  50. local Options = Fluent.Options
  51.  
  52. -- Вкладка Игрока
  53. do
  54. Tabs.Player:AddParagraph({
  55. Title = "Скрипты для игрока",
  56. Content = "Последнее обновление: 25.01.2025 | Discord: 1qlua"
  57. })
  58.  
  59. -- Добавляем слайдер для изменения _G.Walk
  60. Tabs.Player:AddSlider("GlobalWalkSpeed", {
  61. Title = "Базовая скорость передвижения",
  62. Description = "Изменяет глобальную скорость передвижения",
  63. Default = 16,
  64. Min = 0,
  65. Max = 150,
  66. Rounding = 1,
  67. Callback = function(value)
  68. _G.Walk = value
  69. end
  70. })
  71.  
  72. Tabs.Player:AddButton({
  73. Title = "Английская версия",
  74. Description = "Переключиться на английскую версию",
  75. Callback = function()
  76. loadstring(game:HttpGet('https://pastebin.com/raw/32k6f2Ns'))()
  77. end
  78. })
  79.  
  80. Tabs.Player:AddButton({
  81. Title = "Скрипт для ohio",
  82. Description = "Это версия для всех игр",
  83. Callback = function()
  84. loadstring(game:HttpGet('https://pastebin.com/raw/JENqZVm5'))()
  85. end
  86. })
  87.  
  88.  
  89. local player = game.Players.LocalPlayer
  90. local defaultSpeed = 16 -- Стандартная скорость
  91. local currentWalkSpeed = defaultSpeed
  92. local humanoid
  93.  
  94. -- Функция для обработки изменения скорости
  95. local function updateWalkSpeed(value)
  96. currentWalkSpeed = value
  97. if humanoid then
  98. humanoid.WalkSpeed = value
  99. end
  100. print("Скорость изменена на:", value)
  101. end
  102.  
  103. -- Функция для обработки появления персонажа
  104. local function onCharacterAdded(character)
  105. humanoid = character:WaitForChild("Humanoid")
  106. humanoid.WalkSpeed = currentWalkSpeed
  107.  
  108. -- Обработчик смерти персонажа
  109. humanoid.Died:Connect(function()
  110. -- После смерти подождем появления нового персонажа
  111. player.CharacterAdded:Wait()
  112. end)
  113. end
  114.  
  115. -- Подписываемся на событие появления персонажа
  116. player.CharacterAdded:Connect(onCharacterAdded)
  117.  
  118. -- Если персонаж уже есть при запуске скрипта
  119. if player.Character then
  120. onCharacterAdded(player.Character)
  121. end
  122.  
  123. -- Создаем слайдер
  124. local Slider = Tabs.Player:AddSlider("WalkSpeedSlider", {
  125. Title = "Скорость передвижения",
  126. Description = "Изменяет скорость вашего персонажа",
  127. Default = defaultSpeed,
  128. Min = 0,
  129. Max = 150,
  130. Rounding = 1,
  131. Callback = updateWalkSpeed
  132. })
  133.  
  134. local Slider = Tabs.Player:AddSlider("WalkSpeedSlider", {
  135. Title = "Высота прыжка",
  136. Description = "Изменяет высоту прыжка вашего персонажа",
  137. Default = 50,
  138. Min = 0,
  139. Max = 500,
  140. Rounding = 1,
  141. Callback = function(Value)
  142. local player = game.Players.LocalPlayer
  143. local character = player.Character or player.CharacterAdded:Wait()
  144. local humanoid = character:WaitForChild("Humanoid")
  145.  
  146. humanoid.JumpPower = Value
  147.  
  148. function setJumpPower(newPower)
  149. humanoid.JumpPower = newPower
  150. end
  151.  
  152. end
  153. })
  154.  
  155. local Slider = Tabs.Player:AddSlider("WalkSpeedSlider", {
  156. Title = "Изменить FOV",
  157. Description = "Изменяет радиус вашего персонажа",
  158. Default = 70,
  159. Min = 0,
  160. Max = 120,
  161. Rounding = 1,
  162. Callback = function(Value)
  163.  
  164.  
  165. local TargetFOV = Value
  166.  
  167. workspace.CurrentCamera.FieldOfView = TargetFOV
  168.  
  169. workspace:GetPropertyChangedSignal("CurrentCamera"):Connect(function()
  170. if workspace.CurrentCamera then
  171. workspace.CurrentCamera.FieldOfView = TargetFOV
  172. end
  173. end)
  174. end
  175. })
  176.  
  177.  
  178. Tabs.Player:AddButton({
  179. Title = "Полет (Нажми F)",
  180. Description = "Активировать возможность летать",
  181. Callback = function()
  182. 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")()
  183. end
  184. })
  185.  
  186. Tabs.Player:AddButton({
  187. Title = "Шейдеры",
  188. Description = "Поставить красивую графику",
  189. Callback = function()
  190. loadstring(game:HttpGet('https://pastebin.com/raw/TwJZX2MC'))()
  191. end
  192. })
  193.  
  194.  
  195. local Slider = Tabs.Player:AddSlider("WalkSpeedSlider", {
  196. Title = "Поменять время",
  197. Description = "Изменяет Поменять время вашего персонажа",
  198. Default = defaultSpeed,
  199. Min = 0,
  200. Max = 12,
  201. Rounding = 1,
  202. Callback = function(Value)
  203. -- Time Changer Script for Roblox
  204. -- Place this in ServerScriptService or a LocalScript depending on your needs
  205.  
  206. local Lighting = game:GetService("Lighting")
  207.  
  208. -- Configuration - change this number to set the desired time (0-24)
  209. local desiredTime = Value -- Set this to your desired time (e.g., 12 for noon)
  210.  
  211. -- Function to smoothly change the time
  212. local function setTime(hours)
  213. -- Ensure the time is within valid range (0-24)
  214. hours = math.clamp(hours, 0, 24)
  215.  
  216. -- Convert to Roblox time format (0-12 for AM/PM cycle)
  217. local robloxTime = hours % 12
  218. if robloxTime == 0 then robloxTime = 12 end
  219.  
  220. -- Set the time
  221. Lighting.ClockTime = robloxTime
  222.  
  223. -- Optional: Set whether it's day or night
  224. if hours >= 6 and hours < 18 then
  225. Lighting:SetMinutesAfterMidnight(hours * 60)
  226. end
  227.  
  228. print("Time set to: " .. hours .. ":00")
  229. end
  230.  
  231. -- Initial time set
  232. setTime(desiredTime)
  233.  
  234. end
  235. })
  236.  
  237.  
  238. Tabs.Player:AddButton({
  239. Title = "Чекпойнты",
  240. Description = "Создать контрольные точки",
  241. Callback = function()
  242. loadstring(game:HttpGet('https://pastebin.com/raw/rz7uUmED'))()
  243. end
  244. })
  245.  
  246. Tabs.Player:AddButton({
  247. Title = "Свободная камера",
  248. Description = "Нажмите shift + p ",
  249. Callback = function()
  250. loadstring(game:HttpGet('https://pastebin.com/raw/TwJZX2MC'))()
  251. end
  252. })
  253.  
  254.  
  255. Tabs.Player:AddButton({
  256. Title = "Ускорение",
  257. Description = "Увеличить скорость передвижения",
  258. Callback = function()
  259. loadstring(game:HttpGet('https://pastebin.com/raw/Zzqq3U0u'))()
  260. end
  261. })
  262.  
  263. Tabs.Player:AddButton({
  264. Title = "ТП к игрокам",
  265. Description = "Телепортироваться к другим игрокам",
  266. Callback = function()
  267. loadstring(game:HttpGet('https://pastebin.com/raw/z4HARAHs'))()
  268. end
  269. })
  270.  
  271. Tabs.Player:AddButton({
  272. Title = "Играть с писюном",
  273. Description = "Играть ",
  274. Callback = function()
  275. loadstring(game:HttpGet("https://pastebin.com/raw/73RsNXY2"))()
  276. end
  277. })
  278.  
  279. Tabs.Player:AddButton({
  280. Title = "Поменять сервер",
  281. Description = "Быстро поменять сервер",
  282. Callback = function()
  283. loadstring(game:HttpGet("https://pastebin.com/raw/TwJZX2MC"))()
  284. end
  285. })
  286.  
  287.  
  288. Tabs.Player:AddButton({
  289. Title = "Тест инжектора",
  290. Description = "Проверить ваш инжектор",
  291. Callback = function()
  292. loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-UNChecker-GUI-Version-27355"))()
  293. end
  294. })
  295.  
  296. Tabs.Player:AddButton({
  297. Title = "DEX Explorer",
  298. Description = "Инструмент для исследования Roblox",
  299. Callback = function()
  300. loadstring(game:HttpGet("https://raw.githubusercontent.com/MariyaFurmanova/Library/main/dex2.0", true))()
  301. end
  302. })
  303.  
  304. Tabs.Player:AddButton({
  305. Title = "Полет на машине (Нажми V)",
  306. Description = "Летать на транспорте",
  307. Callback = function()
  308. loadstring(game:HttpGet('https://pastebin.com/raw/9bNj1EcR'))()
  309. end
  310. })
  311.  
  312. Tabs.Player:AddButton({
  313. Title = "Добавить всех в друзья",
  314. Description = "Отправить заявки всем игрокам",
  315. Callback = function()
  316. local plrs = game:GetService('Players')
  317. for i,v in pairs(plrs:GetChildren()) do
  318. wait(1)
  319. plrs.LocalPlayer:RequestFriendship(v)
  320. end
  321. end
  322. })
  323.  
  324. Tabs.Player:AddButton({
  325. Title = "Infinite Yield",
  326. Description = "Админ-команды",
  327. Callback = function()
  328. loadstring(game:HttpGet("https://raw.githubusercontent.com/Infinite-Store/Infinite-Store/main/main.lua"))()
  329. end
  330. })
  331.  
  332. Tabs.Player:AddButton({
  333. Title = "Удалить стены",
  334. Description = "Убрать стены в игре",
  335. Callback = function()
  336. loadstring(game:HttpGet("https://pastebin.com/raw/FBKJTUyw"))()
  337. end
  338. })
  339.  
  340. Tabs.Player:AddButton({
  341. Title = "Невидимость (Нажми E)",
  342. Description = "Стать невидимым",
  343. Callback = function()
  344. loadstring(game:HttpGet("https://pastebin.com/raw/TwJZX2MC"))()
  345. end
  346. })
  347.  
  348. Tabs.Player:AddButton({
  349. Title = "Падение на месте (Нажми R)",
  350. Description = "Падать без перемещения",
  351. Callback = function()
  352. loadstring(game:HttpGet('https://pastebin.com/raw/CTUaCKN1'))()
  353. end
  354. })
  355.  
  356. Tabs.Player:AddButton({
  357. Title = "Скорость ТП",
  358. Description = "Инструмент для быстрой телепортации",
  359. Callback = function()
  360. loadstring(game:HttpGetAsync("https://pastebin.com/raw/tumJ5guV"))()
  361. end
  362. })
  363.  
  364. Tabs.Player:AddButton({
  365. Title = "ТП по координатам",
  366. Description = "Телепортация с использованием координат",
  367. Callback = function()
  368. loadstring(game:HttpGetAsync("https://pastebin.com/raw/9ybHwgLa"))()
  369. end
  370. })
  371.  
  372. Tabs.Player:AddButton({
  373. Title = "ТП в свой мир",
  374. Description = "Телепортироваться в свой мир",
  375. Callback = function()
  376. loadstring(game:HttpGetAsync("https://pastebin.com/raw/SRZJGHyq"))()
  377. end
  378. })
  379.  
  380.  
  381. Tabs.Player:AddButton({
  382. Title = "Очень страный скрипт",
  383. Description = "Просто забагался и теперь он такой ахахах",
  384. Callback = function()
  385. loadstring(game:HttpGet("https://pastebin.com/raw/fU4uWZA0"))()
  386. end
  387. })
  388.  
  389. Tabs.Player:AddButton({
  390. Title = "Хаб скриптов",
  391. Description = "Красивый хаб скриптов",
  392. Callback = function()
  393. loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
  394. end
  395. })
  396.  
  397. Tabs.Player:AddButton({
  398. Title = "Крутой GUI",
  399. Description = "Приятный интерфейс",
  400. Callback = function()
  401. loadstring(game:HttpGet("https://pastebin.com/raw/TwJZX2MC", true))()
  402. end
  403. })
  404. end
  405.  
  406. Tabs.Grav:AddButton({
  407. Title = "шейдеры",
  408. Description = "Открывает настройку шейдеров",
  409. Callback = function()
  410. loadstring(game:HttpGet("https://pastebin.com/raw/mXAwCUEk"))()
  411. end
  412. })
  413.  
  414. -- Вкладка Slap Battles
  415. do
  416. Tabs.SlapBattles:AddParagraph({
  417. Title = "Скрипты для Slap Battles",
  418. Content = "Последнее обновление: 2023 | Некоторые скрипты могут быть патчены"
  419. })
  420.  
  421. Tabs.SlapBattles:AddButton({
  422. Title = "Хитбоксы",
  423. Description = "Расширенные хитбоксы",
  424. Callback = function()
  425. loadstring(game:HttpGet('https://raw.githubusercontent.com/Bilmemi/hitbox2/main/op'))()
  426. end
  427. })
  428.  
  429. Tabs.SlapBattles:AddButton({
  430. Title = "Авто-автобус (Каждые 5с)",
  431. Description = "Автоматически использовать способность автобуса",
  432. Callback = function()
  433. while wait() do
  434. game:GetService("ReplicatedStorage"):WaitForChild("busmoment"):FireServer()
  435. wait(6)
  436. end
  437. end
  438. })
  439.  
  440. Tabs.SlapBattles:AddButton({
  441. Title = "Бесконечное Уно",
  442. Description = "Никогда не заканчивается Уно",
  443. Callback = function()
  444. while wait() do
  445. game:GetService("ReplicatedStorage"):WaitForChild("ReverseAbility"):FireServer()
  446. wait(6)
  447. end
  448. end
  449. })
  450.  
  451. Tabs.SlapBattles:AddButton({
  452. Title = "Аура убийства + Режим бога",
  453. Description = "Мощные боевые функции",
  454. Callback = function()
  455. loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
  456. end
  457. })
  458. end
  459.  
  460. -- Вкладка Lumber Tycoon 2
  461. do
  462. Tabs.LumberTycoon:AddParagraph({
  463. Title = "Скрипты для Lumber Tycoon 2",
  464. Content = "Последнее обновление: 26.01.2025"
  465. })
  466.  
  467. Tabs.LumberTycoon:AddButton({
  468. Title = "Infinite Yield",
  469. Description = "Админ-команды",
  470. Callback = function()
  471. loadstring(game:HttpGet("https://raw.githubusercontent.com/Infinite-Store/Infinite-Store/main/main.lua"))()
  472. end
  473. })
  474.  
  475. Tabs.LumberTycoon:AddButton({
  476. Title = "Kron Hub",
  477. Description = "Лучший скрипт для LT2",
  478. Callback = function()
  479. loadstring(game:HttpGet('https://raw.githubusercontent.com/DevKron/Kron_Hub/refs/heads/main/version_1.0'))("")
  480. end
  481. })
  482.  
  483. Tabs.LumberTycoon:AddButton({
  484. Title = "LT2 LuaWare (Мобильный)",
  485. Description = "Скрипт для мобильных устройств",
  486. Callback = function()
  487. loadstring(game:HttpGet("https://raw.githubusercontent.com/frencaliber/LuaWareLoader.lw/main/luawareloader.wtf",true))()
  488. end
  489. })
  490.  
  491. Tabs.LumberTycoon:AddButton({
  492. Title = "LT2 Better Script (ПК)",
  493. Description = "Оптимизированный скрипт для ПК",
  494. Callback = function()
  495. loadstring(game:HttpGet('https://raw.githubusercontent.com/Butterisgood/Butter/main/Root2.lua'))("")
  496. end
  497. })
  498.  
  499. Tabs.LumberTycoon:AddButton({
  500. Title = "Удалить защитные стены",
  501. Description = "Убрать защитные стены",
  502. Callback = function()
  503. while wait() do
  504. game:GetService("Workspace").Effects:Destroy()
  505. end
  506. end
  507. })
  508.  
  509. Tabs.LumberTycoon:AddButton({
  510. Title = "Добавить всех в друзья",
  511. Description = "Отправить заявки всем игрокам",
  512. Callback = function()
  513. local plrs = game:GetService('Players')
  514. for i,v in pairs(plrs:GetChildren()) do
  515. wait(1)
  516. plrs.LocalPlayer:RequestFriendship(v)
  517. end
  518. end
  519. })
  520. end
  521.  
  522. -- Вкладка MM2
  523. do
  524. Tabs.MM2:AddParagraph({
  525. Title = "Скрипты для Murder Mystery 2",
  526. Content = "Последнее обновление: 10.05.2024 | В разработке"
  527. })
  528.  
  529. Tabs.MM2:AddButton({
  530. Title = "ESP",
  531. Description = "Видеть игроков сквозь стены",
  532. Callback = function()
  533. loadstring(game:HttpGet('https://pastebin.com/raw/fkVSAXZ3'))()
  534. end
  535. })
  536. end
  537.  
  538. -- Вкладка Огайо
  539. do
  540. Tabs.Ohio:AddParagraph({
  541. Title = "Скрипты для Огайо",
  542. Content = "Последнее обновление: 08.05.2025"
  543. })
  544.  
  545. Tabs.Ohio:AddParagraph({
  546. Title = "Игрок",
  547. Content = ""
  548. })
  549.  
  550. Tabs.Ohio:AddButton({
  551. Title = "ТП по CTRL+Клик",
  552. Description = "Телепортироваться к месту клика",
  553. Callback = function()
  554. loadstring(game:HttpGet('https://pastebin.com/raw/icB69Hhf'))()
  555. end
  556. })
  557.  
  558. Tabs.Ohio:AddButton({
  559. Title = "Скорость ТП",
  560. Description = "Инструмент для быстрой телепортации",
  561. Callback = function()
  562. loadstring(game:HttpGetAsync("https://pastebin.com/raw/tumJ5guV"))()
  563. end
  564. })
  565.  
  566. Tabs.Ohio:AddButton({
  567. Title = "ТП к игроку",
  568. Description = "Телепортироваться к другим игрокам",
  569. Callback = function()
  570. loadstring(game:HttpGet('https://pastebin.com/raw/z4HARAHs'))()
  571. end
  572. })
  573.  
  574. Tabs.Ohio:AddButton({
  575. Title = "ТП к местам",
  576. Description = "Телепортация в разные места",
  577. Callback = function()
  578. loadstring(game:HttpGet('https://pastebin.com/raw/nrJ7cVcJ'))()
  579. end
  580. })
  581.  
  582. Tabs.Ohio:AddButton({
  583. Title = "ESP",
  584. Description = "Видеть сквозь стены",
  585. Callback = function()
  586. loadstring(game:HttpGet('https://pastebin.com/raw/r97SAaUa'))()
  587. end
  588. })
  589.  
  590. Tabs.Ohio:AddParagraph({
  591. Title = "Телепорты",
  592. Content = ""
  593. })
  594.  
  595. Tabs.Ohio:AddButton({
  596. Title = "Патроны для оружия",
  597. Description = "телепортирует вас",
  598. Callback = function()
  599. loadstring(game:HttpGet"https://pastebin.com/raw/6Frtt9qE")()
  600. end
  601. })
  602.  
  603. Tabs.Ohio:AddButton({
  604. Title = "ТП к кейсам",
  605. Description = "выберите нужный кейс",
  606. Callback = function()
  607. loadstring(game:HttpGet"https://pastebin.com/raw/VvnWtHhJ")()
  608. end
  609. })
  610.  
  611. Tabs.Ohio:AddButton({
  612. Title = "Мини хаб",
  613. Description = "Скрипты 1Qlua для Огайо",
  614. Callback = function()
  615. loadstring(game:HttpGet"https://pastebin.com/raw/fef2FzGc")()
  616. end
  617. })
  618.  
  619. Tabs.Ohio:AddParagraph({
  620. Title = "Авто-фарм",
  621. Content = ""
  622. })
  623.  
  624. Tabs.Ohio:AddButton({
  625. Title = "Авто-фарм хлама V2",
  626. Description = "Автоматический сбор хлама",
  627. Callback = function()
  628. loadstring(game:HttpGet('https://pastebin.com/raw/HNwdknXk'))()
  629. end
  630. })
  631.  
  632. Tabs.Ohio:AddButton({
  633. Title = "Автофарм Банкоматов",
  634. Description = "Автоматический фарм банкоматов",
  635. Callback = function()
  636. loadstring(game:HttpGet('https://pastebin.com/raw/szznrYvx'))()
  637. end
  638. })
  639.  
  640. end
  641.  
  642. -- Добавляем слайдер для изменения _G.Walk
  643. Tabs.kat:AddSlider("GlobalWalkSpeed", {
  644. Title = "Базовая скорость передвижения",
  645. Description = "Изменяет глобальную скорость передвижения",
  646. Default = 16,
  647. Min = 0,
  648. Max = 25,
  649. Rounding = 1,
  650. Callback = function(value)
  651. _G.Walk = value
  652. end
  653. })
  654.  
  655. -- Создаем слайдер для прыгучести
  656. Tabs.kat:AddSlider("JumpPower", {
  657. Title = "Прыгучесть",
  658. Description = "Изменяет высоту прыжка",
  659. Default = 50,
  660. Min = 0,
  661. Max = 200,
  662. Rounding = 1,
  663. Callback = function(value)
  664. -- Сохраняем значение для последующего применения
  665. getgenv().JumpPowerValue = value
  666.  
  667. -- Пытаемся применить к текущему персонажу
  668. pcall(function()
  669. local player = game:GetService("Players").LocalPlayer
  670. if player.Character then
  671. local humanoid = player.Character:FindFirstChildOfClass("Humanoid")
  672. if humanoid then
  673. humanoid.JumpPower = value
  674. end
  675. end
  676. end)
  677. end
  678. })
  679.  
  680. -- Инициализируем глобальную переменную, если ее нет
  681. if not getgenv().JumpPowerValue then
  682. getgenv().JumpPowerValue = 50
  683. end
  684.  
  685. -- Функция для применения настроек прыгучести
  686. local function applyJumpPower(character)
  687. pcall(function()
  688. -- Ждем появления Humanoid (может быть задержка после смерти)
  689. local humanoid = character:WaitForChild("Humanoid", 10)
  690. if humanoid then
  691. -- Устанавливаем сохраненное значение
  692. humanoid.JumpPower = getgenv().JumpPowerValue
  693.  
  694. -- Защита от сброса (повторяем установку через небольшой интервал)
  695. for _ = 1, 3 do
  696. task.wait(0.5)
  697. humanoid.JumpPower = getgenv().JumpPowerValue
  698. end
  699. end
  700. end)
  701. end
  702.  
  703. -- Обработчик добавления нового персонажа
  704. game:GetService("Players").LocalPlayer.CharacterAdded:Connect(function(character)
  705. applyJumpPower(character)
  706. end)
  707.  
  708. -- Применяем к текущему персонажу, если он существует
  709. if game:GetService("Players").LocalPlayer.Character then
  710. applyJumpPower(game:GetService("Players").LocalPlayer.Character)
  711. end
  712.  
  713. -- Защита от анти-читы систем (необязательно, но рекомендуется)
  714. task.spawn(function()
  715. while task.wait(1) do
  716. pcall(function()
  717. local humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  718. if humanoid and humanoid.JumpPower ~= getgenv().JumpPowerValue then
  719. humanoid.JumpPower = getgenv().JumpPowerValue
  720. end
  721. end)
  722. end
  723. end)
  724.  
  725. local Slider = Tabs.kat:AddSlider("WalkSpeedSlider", {
  726. Title = "Изменить FOV",
  727. Description = "Изменяет радиус вашего персонажа",
  728. Default = 70,
  729. Min = 0,
  730. Max = 120,
  731. Rounding = 1,
  732. Callback = function(Value)
  733.  
  734.  
  735. local TargetFOV = Value
  736.  
  737. workspace.CurrentCamera.FieldOfView = TargetFOV
  738.  
  739. workspace:GetPropertyChangedSignal("CurrentCamera"):Connect(function()
  740. if workspace.CurrentCamera then
  741. workspace.CurrentCamera.FieldOfView = TargetFOV
  742. end
  743. end)
  744. end
  745. })
  746.  
  747.  
  748. Tabs.kat:AddButton({
  749. Title = "Английская версия",
  750. Description = "Переключиться на английскую версию",
  751. Callback = function()
  752. loadstring(game:HttpGet('https://pastebin.com/raw/32k6f2Ns'))()
  753. end
  754. })
  755.  
  756.  
  757. Tabs.kat:AddButton({
  758. Title = "удалить стены",
  759. Description = "удаляешь стены которые мешают",
  760. Callback = function()
  761. loadstring(game:HttpGet("https://pastebin.com/raw/FBKJTUyw"))()
  762. end
  763. })
  764.  
  765. Tabs.kat:AddButton({
  766. Title = "Падение на месте (Нажми R)",
  767. Description = "Падать без перемещения",
  768. Callback = function()
  769. loadstring(game:HttpGet('https://pastebin.com/raw/CTUaCKN1'))()
  770. end
  771. })
  772.  
  773. Tabs.kat:AddButton({
  774. Title = "ESP",
  775. Description = "Видеть сквозь стены",
  776. Callback = function()
  777. loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
  778. end
  779. })
  780.  
  781. Tabs.kat:AddButton({
  782. Title = "kill aura",
  783. Description = "стреляешь куда угодно поподаешь",
  784. Callback = function()
  785. loadstring(game:HttpGet('https://pastebin.com/raw/mk1ge1hm'))()
  786. end
  787. })
  788.  
  789.  
  790. -- Jailbreak Tab
  791. do
  792. Tabs.Jailbreak:AddParagraph({
  793. Title = "Скрипты для Jailbreak",
  794. Content = "Последнее обновление: 22.02.2025"
  795. })
  796.  
  797. Tabs.Jailbreak:AddButton({
  798. Title = "Автофарм",
  799. Description = "Автоматический сбор денег",
  800. Callback = function()
  801. loadstring(game:HttpGet('http://scripts.projectauto.xyz/AutoRobV5'))()
  802. end
  803. })
  804.  
  805. Tabs.Jailbreak:AddButton({
  806. Title = "ESP (сквозь стены)",
  807. Description = "Видеть сквозь стены",
  808. Callback = function()
  809. loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
  810. end
  811. })
  812.  
  813. Tabs.Jailbreak:AddButton({
  814. Title = "ТП по CTRL+Клик",
  815. Description = "Телепортация к выбранной точке",
  816. Callback = function()
  817. loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
  818. end
  819. })
  820.  
  821. Tabs.Jailbreak:AddButton({
  822. Title = "Полёт на машине (клавиша V)",
  823. Description = "Летать на транспорте",
  824. Callback = function()
  825. loadstring(game:HttpGet('https://pastebin.com/raw/9bNj1EcR'))()
  826. end
  827. })
  828.  
  829. Tabs.Jailbreak:AddButton({
  830. Title = "Ускорение",
  831. Description = "Увеличение скорости передвижения",
  832. Callback = function()
  833. loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
  834. end
  835. })
  836.  
  837. Tabs.Jailbreak:AddButton({
  838. Title = "Infinite Yield (админ-команды)",
  839. Description = "Административные команды",
  840. Callback = function()
  841. loadstring(game:HttpGet("https://raw.githubusercontent.com/Infinite-Store/Infinite-Store/main/main.lua"))()
  842. end
  843. })
  844. end
  845.  
  846. -- A Dusty Trip Tab
  847. do
  848. Tabs.DustyTrip:AddParagraph({
  849. Title = "Скрипты для A Dusty Trip",
  850. Content = "Различные скрипты для A Dusty Trip"
  851. })
  852.  
  853. Tabs.DustyTrip:AddButton({
  854. Title = "Infinite Yield",
  855. Description = "Административные команды",
  856. Callback = function()
  857. loadstring(game:HttpGet("https://raw.githubusercontent.com/Infinite-Store/Infinite-Store/main/main.lua"))()
  858. end
  859. })
  860.  
  861. Tabs.DustyTrip:AddButton({
  862. Title = "DEX Explorer (инструмент)",
  863. Description = "Инструмент исследования Roblox",
  864. Callback = function()
  865. loadstring(game:HttpGet("https://raw.githubusercontent.com/infyiff/backup/main/dex.lua"))()
  866. end
  867. })
  868.  
  869. Tabs.DustyTrip:AddParagraph({
  870. Title = "Скрипты игрока",
  871. Content = "Различные модификации игрока"
  872. })
  873.  
  874. Tabs.DustyTrip:AddButton({
  875. Title = "Полёт на машине (клавиша V)",
  876. Description = "Летать на транспорте",
  877. Callback = function()
  878. loadstring(game:HttpGet('https://pastebin.com/raw/9bNj1EcR'))()
  879. end
  880. })
  881.  
  882. Tabs.DustyTrip:AddButton({
  883. Title = "Скорость 5000",
  884. Description = "Очень высокая скорость",
  885. Callback = function()
  886. _G.Walk = 5000
  887. if _G.WalkSpeed then
  888. error('loop is running!')
  889. end
  890. _G.WalkSpeed = true
  891. local LPlayer = game:GetService'Players'.LocalPlayer
  892. local Heartbeat = game:GetService'RunService'.Heartbeat
  893. Heartbeat:Connect(function()
  894. local hum = LPlayer.Character:FindFirstChildOfClass'Humanoid'
  895. if hum then
  896. hum.WalkSpeed = _G.Walk
  897. end
  898. end)
  899. end
  900. })
  901.  
  902. Tabs.DustyTrip:AddButton({
  903. Title = "Скорость 1000",
  904. Description = "Очень быстрая скорость",
  905. Callback = function()
  906. _G.Walk = 1000
  907. if _G.WalkSpeed then
  908. error('loop is running!')
  909. end
  910. _G.WalkSpeed = true
  911. local LPlayer = game:GetService'Players'.LocalPlayer
  912. local Heartbeat = game:GetService'RunService'.Heartbeat
  913. Heartbeat:Connect(function()
  914. local hum = LPlayer.Character:FindFirstChildOfClass'Humanoid'
  915. if hum then
  916. hum.WalkSpeed = _G.Walk
  917. end
  918. end)
  919. end
  920. })
  921.  
  922. Tabs.DustyTrip:AddButton({
  923. Title = "Скорость 50",
  924. Description = "Умеренное ускорение",
  925. Callback = function()
  926. _G.Walk = 50
  927. if _G.WalkSpeed then
  928. error('loop is running!')
  929. end
  930. _G.WalkSpeed = true
  931. local LPlayer = game:GetService'Players'.LocalPlayer
  932. local Heartbeat = game:GetService'RunService'.Heartbeat
  933. Heartbeat:Connect(function()
  934. local hum = LPlayer.Character:FindFirstChildOfClass'Humanoid'
  935. if hum then
  936. hum.WalkSpeed = _G.Walk
  937. end
  938. end)
  939. end
  940. })
  941.  
  942. Tabs.DustyTrip:AddButton({
  943. Title = "Скорость 25",
  944. Description = "Небольшое ускорение",
  945. Callback = function()
  946. _G.Walk = 25
  947. if _G.WalkSpeed then
  948. error('loop is running!')
  949. end
  950. _G.WalkSpeed = true
  951. local LPlayer = game:GetService'Players'.LocalPlayer
  952. local Heartbeat = game:GetService'RunService'.Heartbeat
  953. Heartbeat:Connect(function()
  954. local hum = LPlayer.Character:FindFirstChildOfClass'Humanoid'
  955. if hum then
  956. hum.WalkSpeed = _G.Walk
  957. end
  958. end)
  959. end
  960. })
  961. end
  962.  
  963.  
  964. Tabs.give:AddButton({
  965. Title = "выдать деньги",
  966. Description = "выдать деньги",
  967. Callback = function()
  968.  
  969. local args = {
  970. "Cash",
  971. 241561515
  972. }
  973. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("AddRewardEvent"):FireServer(unpack(args))
  974.  
  975. end
  976. })
  977.  
  978. Tabs.give:AddButton({
  979. Title = "выдать спины",
  980. Description = "",
  981. Callback = function()
  982. local args = {
  983. "Spins",
  984. 51
  985. }
  986. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("AddRewardEvent"):FireServer(unpack(args))
  987.  
  988. end
  989. })
  990.  
  991. Tabs.give:AddButton({
  992. Title = "выдать лутшого пета",
  993. Description = "",
  994. Callback = function()
  995. local args = {
  996. "Lava Dominus"
  997. }
  998. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("PetCageEvent"):FireServer(unpack(args))
  999.  
  1000. end
  1001. })
  1002.  
  1003. Tabs.give:AddButton({
  1004. Title = "выдать 25к",
  1005. Description = "",
  1006. Callback = function()
  1007. local args = {
  1008. 2
  1009. }
  1010. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("SpinPrizeEvent"):FireServer(unpack(args))
  1011.  
  1012. end
  1013. })
  1014.  
  1015. Tabs.give:AddButton({
  1016. Title = "выдать 375 гемов",
  1017. Description = "",
  1018. Callback = function()
  1019.  
  1020. local args = {
  1021. 5
  1022. }
  1023. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("SpinPrizeEvent"):FireServer(unpack(args))
  1024.  
  1025. end
  1026. })
  1027.  
  1028. Tabs.give:AddButton({
  1029. Title = "выдать спины",
  1030. Description = "",
  1031. Callback = function()
  1032. local args = {
  1033. 3
  1034. }
  1035. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("SpinPrizeEvent"):FireServer(unpack(args))
  1036.  
  1037. end
  1038. })
  1039.  
  1040. Tabs.give:AddButton({
  1041. Title = "X10 МОНЕТ",
  1042. Description = "",
  1043. Callback = function()
  1044. loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
  1045. end
  1046. })
  1047.  
  1048.  
  1049. -- Build A Boat Tab
  1050. do
  1051. Tabs.BuildBoat:AddParagraph({
  1052. Title = "Скрипты для Build A Boat",
  1053. Content = "Скрипты для Build A Boat For Treasure"
  1054. })
  1055.  
  1056. Tabs.BuildBoat:AddButton({
  1057. Title = "Автофарм",
  1058. Description = "Автоматический фарм",
  1059. Callback = function()
  1060. loadstring(game:HttpGet('https://pastebin.com/raw/24e7Skmv'))()
  1061. end
  1062. })
  1063.  
  1064. Tabs.BuildBoat:AddButton({
  1065. Title = "Полёт (клавиша F)",
  1066. Description = "Активировать полёт",
  1067. Callback = function()
  1068. 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")()
  1069. end
  1070. })
  1071.  
  1072. Tabs.BuildBoat:AddButton({
  1073. Title = "Ускорение",
  1074. Description = "Увеличение скорости передвижения",
  1075. Callback = function()
  1076. loadstring(game:HttpGet('https://pastebin.com/raw/EdUyxN7Z'))()
  1077. end
  1078. })
  1079. end
  1080.  
  1081. -- Grow a Garden Tab
  1082. do
  1083. Tabs.GrowGarden:AddParagraph({
  1084. Title = "Скрипты для Grow a Garden",
  1085. Content = "Различные скрипты для Grow a Garden"
  1086. })
  1087.  
  1088. Tabs.GrowGarden:AddButton({
  1089. Title = "Автофарм",
  1090. Description = "Автоматический фарм",
  1091. Callback = function()
  1092. loadstring(game:HttpGet('https://pastebin.com/raw/UZU3cmQZ'))()
  1093. end
  1094. })
  1095.  
  1096. Tabs.GrowGarden:AddButton({
  1097. Title = "Ускорение",
  1098. Description = "Увеличение скорости передвижения",
  1099. Callback = function()
  1100. loadstring(game:HttpGet('https://pastebin.com/raw/Zzqq3U0u'))()
  1101. end
  1102. })
  1103.  
  1104. Tabs.GrowGarden:AddParagraph({
  1105. Title = "Скрипты сообщества",
  1106. Content = "Скрипты, созданные другими"
  1107. })
  1108.  
  1109. Tabs.GrowGarden:AddButton({
  1110. Title = "Хороший хаб",
  1111. Description = "Качественная коллекция скриптов",
  1112. Callback = function()
  1113. loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
  1114. end
  1115. })
  1116.  
  1117. Tabs.GrowGarden:AddButton({
  1118. Title = "Хаб без лагов",
  1119. Description = "Оптимизированная производительность",
  1120. Callback = function()
  1121. loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
  1122. end
  1123. })
  1124. end
  1125.  
  1126.  
  1127. Tabs.Human:AddButton({
  1128. Title = "килл алл",
  1129. Description = "",
  1130. Callback = function()
  1131. -- Основной скрипт для автоматического нацеливания и атаки
  1132. local player = game:GetService("Players").LocalPlayer
  1133. local running = true -- Флаг работы скрипта
  1134.  
  1135. -- Функция для остановки через консоль
  1136. _G.StopAutoSkewer = function()
  1137. running = false
  1138. return "Скрипт AutoSkewer остановлен!"
  1139. end
  1140.  
  1141. -- Поиск ближайшего игрока
  1142. local function findNearestPlayer()
  1143. local character = player.Character or player.CharacterAdded:Wait()
  1144. local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
  1145. local nearestPlayer = nil
  1146. local minDistance = math.huge
  1147.  
  1148. for _, otherPlayer in ipairs(game:GetService("Players"):GetPlayers()) do
  1149. if otherPlayer ~= player and otherPlayer.Character then
  1150. local otherRoot = otherPlayer.Character:FindFirstChild("HumanoidRootPart")
  1151. if otherRoot then
  1152. local distance = (humanoidRootPart.Position - otherRoot.Position).Magnitude
  1153. if distance < minDistance then
  1154. minDistance = distance
  1155. nearestPlayer = otherPlayer
  1156. end
  1157. end
  1158. end
  1159. end
  1160. return nearestPlayer
  1161. end
  1162.  
  1163. print([[AutoSkewer запущен!
  1164. Команда для остановки: StopAutoSkewer()]])
  1165.  
  1166. -- Основной цикл
  1167. while running do
  1168. task.wait(0.1) -- Частота обновления (10 раз в секунду)
  1169. local target = findNearestPlayer()
  1170. if target then
  1171. local args = { game:GetService("Players"):WaitForChild(target.Name) }
  1172. game:GetService("ReplicatedStorage").Remotes.Client.SkewerHit:FireServer(unpack(args))
  1173. end
  1174. end
  1175.  
  1176. print("AutoSkewer завершил работу.")
  1177. end
  1178. })
  1179.  
  1180. Tabs.Human:AddButton({
  1181. Title = "остановить килл алл",
  1182. Description = "",
  1183. Callback = function()
  1184. loadstring(game:HttpGetAsync("https://pastebin.com/raw/TwJZX2MC"))()
  1185. end
  1186. })
  1187.  
  1188. Tabs.baseplate:AddButton({
  1189. Title = "Скрискрипт для baseplate",
  1190. Description = "запускает скрипт",
  1191. Callback = function()
  1192. loadstring(game:HttpGet("https://pastebin.com/raw/aAYx0WZG"))()
  1193. end
  1194. })
  1195.  
  1196. Tabs.esp:AddButton({
  1197. Title = "Esp",
  1198. Description = "Видить скось стены игроков",
  1199. Callback = function()
  1200. loadstring(game:HttpGet('https://pastebin.com/raw/yKvD4NzC'))()
  1201. end
  1202. })
  1203.  
  1204.  
  1205. -- Settings Tab
  1206. SaveManager:SetLibrary(Fluent)
  1207. InterfaceManager:SetLibrary(Fluent)
  1208. SaveManager:IgnoreThemeSettings()
  1209. InterfaceManager:SetFolder("1Qlua")
  1210. SaveManager:SetFolder("1Qlua/UniversalScriptHub")
  1211. InterfaceManager:BuildInterfaceSection(Tabs.Settings)
  1212. SaveManager:BuildConfigSection(Tabs.Settings)
  1213.  
  1214. -- Добавляем Aimbot в конец (новая вкладка)
  1215. local players = game:GetService("Players")
  1216. local plr = players.LocalPlayer
  1217. local wrk = game:GetService("Workspace")
  1218. local camera = wrk.CurrentCamera
  1219. local mouse = plr:GetMouse()
  1220.  
  1221. -- Aimbot variables
  1222. local aimbotEnabled = false
  1223. local aimParts = {"Head"}
  1224. local aiming = false
  1225. local predictionStrength = 0.065
  1226. local smoothing = 0.05
  1227. local aimFov = 100
  1228. local wallCheck = true
  1229. local teamCheck = false
  1230. local currentTarget = nil
  1231.  
  1232. -- Color system
  1233. local colorOptions = {
  1234. "Красный",
  1235. "Зеленый",
  1236. "Синий",
  1237. "Желтый",
  1238. "Фиолетовый"
  1239. }
  1240.  
  1241. local colorValues = {
  1242. ["Красный"] = Color3.fromRGB(255, 0, 0),
  1243. ["Зеленый"] = Color3.fromRGB(0, 255, 0),
  1244. ["Синий"] = Color3.fromRGB(0, 0, 255),
  1245. ["Желтый"] = Color3.fromRGB(255, 255, 0),
  1246. ["Фиолетовый"] = Color3.fromRGB(128, 0, 128)
  1247. }
  1248.  
  1249. local circleColor = colorValues["Красный"]
  1250. local targetedColor = colorValues["Зеленый"]
  1251.  
  1252. -- FOV Circle
  1253. local fovCircle = Drawing.new("Circle")
  1254. fovCircle.Thickness = 2
  1255. fovCircle.Radius = aimFov
  1256. fovCircle.Filled = false
  1257. fovCircle.Color = circleColor
  1258. fovCircle.Visible = false
  1259.  
  1260. -- Aimbot functions
  1261. local function checkTeam(player)
  1262. return teamCheck and player.Team == plr.Team
  1263. end
  1264.  
  1265. local function getClosestPart(character)
  1266. local closestPart = nil
  1267. local shortestDistance = aimFov
  1268.  
  1269. for _, partName in ipairs(aimParts) do
  1270. local part = character:FindFirstChild(partName)
  1271. if part then
  1272. local partPos = camera:WorldToViewportPoint(part.Position)
  1273. if partPos.Z > 0 then
  1274. local distance = (Vector2.new(partPos.X, partPos.Y) - Vector2.new(mouse.X, mouse.Y)).Magnitude
  1275. if distance < shortestDistance then
  1276. shortestDistance = distance
  1277. closestPart = part
  1278. end
  1279. end
  1280. end
  1281. end
  1282.  
  1283. return closestPart
  1284. end
  1285.  
  1286. local function getTarget()
  1287. local closestPlayer = nil
  1288. local closestPart = nil
  1289. local shortestDistance = aimFov
  1290.  
  1291. for _, player in ipairs(players:GetPlayers()) do
  1292. if player ~= plr and player.Character and not checkTeam(player) then
  1293. local part = getClosestPart(player.Character)
  1294. if part then
  1295. local distance = (Vector2.new(camera:WorldToViewportPoint(part.Position).X, camera:WorldToViewportPoint(part.Position).Y) - Vector2.new(mouse.X, mouse.Y)).Magnitude
  1296. if distance < shortestDistance then
  1297. shortestDistance = distance
  1298. closestPlayer = player
  1299. closestPart = part
  1300. end
  1301. end
  1302. end
  1303. end
  1304.  
  1305. return closestPlayer, closestPart
  1306. end
  1307.  
  1308. local function aimAt(player, part)
  1309. if player and part then
  1310. local predictedPosition = part.Position + (player.Character.HumanoidRootPart.Velocity * predictionStrength)
  1311. camera.CFrame = camera.CFrame:Lerp(CFrame.new(camera.CFrame.Position, predictedPosition), smoothing)
  1312. end
  1313. end
  1314.  
  1315. -- Aimbot UI
  1316. Tabs.aimbot:AddToggle("AimbotEnabled", {
  1317. Title = "Включить Aimbot",
  1318. Default = false,
  1319. Callback = function(Value)
  1320. aimbotEnabled = Value
  1321. fovCircle.Visible = Value
  1322. end
  1323. })
  1324.  
  1325. Tabs.aimbot:AddDropdown("AimPart", {
  1326. Title = "Часть тела",
  1327. Values = {"Head", "HumanoidRootPart", "Torso"},
  1328. Default = "Head",
  1329. Callback = function(Value)
  1330. aimParts = {Value}
  1331. end
  1332. })
  1333.  
  1334. Tabs.aimbot:AddSlider("Smoothing", {
  1335. Title = "Сглаживание",
  1336. Min = 1,
  1337. Max = 100,
  1338. Default = 37,
  1339. Rounding = 0,
  1340. Callback = function(Value)
  1341. smoothing = 1 - (Value / 100)
  1342. end
  1343. })
  1344.  
  1345. Tabs.aimbot:AddSlider("Prediction", {
  1346. Title = "Предсказание",
  1347. Min = 0,
  1348. Max = 0.2,
  1349. Default = 0.02,
  1350. Rounding = 3,
  1351. Callback = function(Value)
  1352. predictionStrength = Value
  1353. end
  1354. })
  1355.  
  1356. Tabs.aimbot:AddSlider("FOV", {
  1357. Title = "Поле зрения",
  1358. Min = 10,
  1359. Max = 1000,
  1360. Default = 50,
  1361. Rounding = 0,
  1362. Callback = function(Value)
  1363. aimFov = Value
  1364. fovCircle.Radius = Value
  1365. end
  1366. })
  1367.  
  1368. Tabs.aimbot:AddToggle("WallCheck", {
  1369. Title = "Проверка стен",
  1370. Default = false,
  1371. Callback = function(Value)
  1372. wallCheck = Value
  1373. end
  1374. })
  1375.  
  1376. Tabs.aimbot:AddToggle("TeamCheck", {
  1377. Title = "Проверка команды",
  1378. Default = false,
  1379. Callback = function(Value)
  1380. teamCheck = Value
  1381. end
  1382. })
  1383.  
  1384. Tabs.aimbot:AddDropdown("FOVColor", {
  1385. Title = "Цвет FOV",
  1386. Values = colorOptions,
  1387. Default = "Красный",
  1388. Callback = function(Value)
  1389. circleColor = colorValues[Value]
  1390. fovCircle.Color = circleColor
  1391. end
  1392. })
  1393.  
  1394. Tabs.aimbot:AddDropdown("TargetColor", {
  1395. Title = "Цвет цели",
  1396. Values = colorOptions,
  1397. Default = "Зеленый",
  1398. Callback = function(Value)
  1399. targetedColor = colorValues[Value]
  1400. end
  1401. })
  1402.  
  1403. -- Main loop
  1404. game:GetService("RunService").RenderStepped:Connect(function()
  1405. if aimbotEnabled then
  1406. fovCircle.Position = Vector2.new(mouse.X, mouse.Y + 36)
  1407.  
  1408. if aiming then
  1409. if currentTarget then
  1410. fovCircle.Color = targetedColor
  1411. aimAt(currentTarget, currentTarget.Character[aimParts[1]])
  1412. else
  1413. currentTarget = getTarget()
  1414. end
  1415. else
  1416. fovCircle.Color = circleColor
  1417. currentTarget = nil
  1418. end
  1419. end
  1420. end)
  1421.  
  1422. mouse.Button2Down:Connect(function()
  1423. if aimbotEnabled then
  1424. aiming = true
  1425. end
  1426. end)
  1427.  
  1428. mouse.Button2Up:Connect(function()
  1429. if aimbotEnabled then
  1430. aiming = false
  1431. end
  1432. end)
  1433.  
  1434. Window:SelectTab(1)
  1435.  
  1436. Fluent:Notify({
  1437. Title = "1Qlua",
  1438. Content = "Universal Script Hub успешно загружен!",
  1439. Duration = 8
  1440. })
  1441.  
  1442. SaveManager:LoadAutoloadConfig()
  1443.  
  1444. loadstring(game:HttpGet("https://pastebin.com/raw/wqQAEbvJ"))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement