Advertisement
kill21_2

dors

May 18th, 2025 (edited)
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.21 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 | Версия 19",
  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. Hub = Window:AddTab({ Title = "хаб", Icon = "monitor" }),
  34. bx = Window:AddTab({ Title = "подсветка, и предуприждения", Icon = "monitor" }),
  35. Settings = Window:AddTab({ Title = "Настройки", Icon = "settings" })
  36. }
  37.  
  38. local Options = Fluent.Options
  39.  
  40. -- Вкладка Игрока
  41. Tabs.Player:AddParagraph({
  42. Title = "Скрипты для игрока",
  43. Content = "Последнее обновление: 25.01.2025 | Discord: 1qlua"
  44. })
  45.  
  46. -- Добавляем слайдер для изменения _G.Walk
  47. Tabs.Player:AddSlider("GlobalWalkSpeed", {
  48. Title = "Базовая скорость передвижения",
  49. Description = "Изменяет глобальную скорость передвижения",
  50. Default = 16,
  51. Min = 0,
  52. Max = 21,
  53. Rounding = 1,
  54. Callback = function(value)
  55. _G.Walk = value
  56. end
  57. })
  58.  
  59. Tabs.Player:AddButton({
  60. Title = "Вклучиить прижок",
  61. Description = "Вклучиить прижок",
  62. Callback = function()
  63. local player = game:GetService("Players").LocalPlayer
  64. local character = player.Character or player.CharacterAdded:Wait()
  65. local humanoid = character:WaitForChild("Humanoid")
  66.  
  67. local UserInputService = game:GetService("UserInputService")
  68. local JUMP_HEIGHT = 5 -- Высота прыжка
  69.  
  70. local function onJump()
  71. -- Проверяем, что персонаж существует и у него есть корневая часть
  72. if not character or not character.Parent then
  73. character = player.Character or player.CharacterAdded:Wait()
  74. humanoid = character:WaitForChild("Humanoid")
  75. end
  76.  
  77. local rootPart = character:FindFirstChild("HumanoidRootPart")
  78. if rootPart and humanoid.FloorMaterial ~= Enum.Material.Air then
  79. -- Телепортируем вверх
  80. rootPart.CFrame = rootPart.CFrame + Vector3.new(0, JUMP_HEIGHT, 0)
  81. end
  82. end
  83.  
  84. -- Подключаем обработчик прыжка
  85. UserInputService.JumpRequest:Connect(onJump)
  86.  
  87. -- Альтернативный вариант через InputBegan (раскомментируйте если нужно)
  88. -- UserInputService.InputBegan:Connect(function(input, gameProcessed)
  89. -- if input.KeyCode == Enum.KeyCode.Space and not gameProcessed then
  90. -- onJump()
  91. -- end
  92. -- end)
  93. end
  94. })
  95.  
  96. Tabs.Player:AddButton({
  97. Title = "вх дверей",
  98. Description = "",
  99. Callback = function()
  100. local function findAndHighlightDoors()
  101. local highlight = Instance.new("Highlight")
  102. highlight.Name = "DoorHighlight"
  103. highlight.FillTransparency = 0.7
  104. highlight.OutlineColor = Color3.fromRGB(0, 255, 0)
  105. highlight.FillColor = Color3.fromRGB(0, 255, 0)
  106.  
  107. local function processModel(model)
  108. if model.Name:lower() == "door" then
  109. -- Проверяем, есть ли в модели RemoteEvent с именем ClientOpen
  110. local hasClientOpen = false
  111. for _, child in ipairs(model:GetDescendants()) do
  112. if child:IsA("RemoteEvent") and child.Name == "ClientOpen" then
  113. hasClientOpen = true
  114. break
  115. end
  116. end
  117.  
  118. if hasClientOpen then
  119. -- Создаем Highlight для этой модели, если его еще нет
  120. if not model:FindFirstChild("DoorHighlight") then
  121. local newHighlight = highlight:Clone()
  122. newHighlight.Adornee = model
  123. newHighlight.Parent = model
  124. print("Found door with ClientOpen at: " .. model:GetFullName())
  125. end
  126. else
  127. -- Удаляем Highlight, если он есть, но RemoteEvent отсутствует
  128. local existingHighlight = model:FindFirstChild("DoorHighlight")
  129. if existingHighlight then
  130. existingHighlight:Destroy()
  131. end
  132. end
  133. end
  134. end
  135.  
  136. -- Обрабатываем все существующие модели
  137. for _, model in ipairs(workspace:GetDescendants()) do
  138. if model:IsA("Model") then
  139. processModel(model)
  140. end
  141. end
  142.  
  143. -- Настраиваем отслеживание новых моделей
  144. workspace.DescendantAdded:Connect(function(descendant)
  145. if descendant:IsA("Model") then
  146. processModel(descendant)
  147. end
  148. end)
  149. end
  150.  
  151. -- Запускаем поиск
  152. findAndHighlightDoors()
  153. end
  154. })
  155.  
  156. Tabs.Grav:AddButton({
  157. Title = "шейдеры",
  158. Description = "Открывает настройку шейдеров",
  159. Callback = function()
  160. loadstring(game:HttpGet("https://pastebin.com/raw/mXAwCUEk"))()
  161. end
  162. })
  163.  
  164.  
  165.  
  166.  
  167. local Keybind = Tabs.bx:AddKeybind("Keybind", {
  168. Title = "ESP полезных вешей",
  169. Mode = "Toggle", -- Always, Toggle, Hold
  170. Default = "LeftControl", -- String as the name of the keybind (MB1, MB2 for mouse buttons)
  171.  
  172. -- Occurs when the keybind is clicked, Value is `true`/`false`
  173. Callback = function(Value)
  174. print("Keybind clicked!", Value)
  175. loadstring(game:HttpGet('https://pastebin.com/raw/6G0Cc15U'))()
  176. end,
  177.  
  178. -- Вкладка Игрока
  179. Tabs.bx:AddParagraph({
  180. Title = "Предуприждения на раша глаз уже вклучен",
  181. Content = "Подсказки вклучены "
  182. })
  183.  
  184. })
  185.  
  186. Tabs.Hub:AddButton({
  187. Title = "Хорошый хаб",
  188. Description = "Открывает хаб",
  189. Callback = function()
  190. loadstring(game:HttpGet("https://raw.githubusercontent.com/CatEnddroid/Kitty-Cats-Doors-Beta/refs/heads/main/hub.lua"))("t.me/Demonic_Scripts")
  191. end
  192. })
  193.  
  194.  
  195. Keybind:SetValue("MB2", "Toggle") -- Sets keybind to MB2, mode to Hold
  196.  
  197.  
  198. -- Initialize save system
  199. SaveManager:SetLibrary(Fluent)
  200. InterfaceManager:SetLibrary(Fluent)
  201. SaveManager:IgnoreThemeSettings()
  202. InterfaceManager:SetFolder("GraphicsEnhancer")
  203. SaveManager:SetFolder("GraphicsEnhancer/configs")
  204. InterfaceManager:BuildInterfaceSection(Tabs.Settings)
  205. SaveManager:BuildConfigSection(Tabs.Settings)
  206.  
  207.  
  208.  
  209. Window:SelectTab(1)
  210.  
  211. Fluent:Notify({
  212. Title = "Улучшение графики от 1qlua",
  213. Content = "Панель управления графикой успешно загружена!",
  214. Duration = 5
  215. })
  216.  
  217. -- Load saved config
  218. SaveManager:LoadAutoloadConfig()
  219.  
  220. loadstring(game:HttpGet('https://pastebin.com/raw/9rgPT57e'))()
  221.  
  222. loadstring(game:HttpGet('https://pastebin.com/raw/pu4hEJiY'))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement