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 | Версия 19",
- 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" }),
- Hub = Window:AddTab({ Title = "хаб", Icon = "monitor" }),
- bx = Window:AddTab({ Title = "подсветка, и предуприждения", Icon = "monitor" }),
- Settings = Window:AddTab({ Title = "Настройки", Icon = "settings" })
- }
- local Options = Fluent.Options
- -- Вкладка Игрока
- Tabs.Player:AddParagraph({
- Title = "Скрипты для игрока",
- Content = "Последнее обновление: 25.01.2025 | Discord: 1qlua"
- })
- -- Добавляем слайдер для изменения _G.Walk
- Tabs.Player:AddSlider("GlobalWalkSpeed", {
- Title = "Базовая скорость передвижения",
- Description = "Изменяет глобальную скорость передвижения",
- Default = 16,
- Min = 0,
- Max = 21,
- Rounding = 1,
- Callback = function(value)
- _G.Walk = value
- end
- })
- Tabs.Player:AddButton({
- Title = "Вклучиить прижок",
- Description = "Вклучиить прижок",
- Callback = function()
- local player = game:GetService("Players").LocalPlayer
- local character = player.Character or player.CharacterAdded:Wait()
- local humanoid = character:WaitForChild("Humanoid")
- local UserInputService = game:GetService("UserInputService")
- local JUMP_HEIGHT = 5 -- Высота прыжка
- local function onJump()
- -- Проверяем, что персонаж существует и у него есть корневая часть
- if not character or not character.Parent then
- character = player.Character or player.CharacterAdded:Wait()
- humanoid = character:WaitForChild("Humanoid")
- end
- local rootPart = character:FindFirstChild("HumanoidRootPart")
- if rootPart and humanoid.FloorMaterial ~= Enum.Material.Air then
- -- Телепортируем вверх
- rootPart.CFrame = rootPart.CFrame + Vector3.new(0, JUMP_HEIGHT, 0)
- end
- end
- -- Подключаем обработчик прыжка
- UserInputService.JumpRequest:Connect(onJump)
- -- Альтернативный вариант через InputBegan (раскомментируйте если нужно)
- -- UserInputService.InputBegan:Connect(function(input, gameProcessed)
- -- if input.KeyCode == Enum.KeyCode.Space and not gameProcessed then
- -- onJump()
- -- end
- -- end)
- end
- })
- Tabs.Player:AddButton({
- Title = "вх дверей",
- Description = "",
- Callback = function()
- local function findAndHighlightDoors()
- local highlight = Instance.new("Highlight")
- highlight.Name = "DoorHighlight"
- highlight.FillTransparency = 0.7
- highlight.OutlineColor = Color3.fromRGB(0, 255, 0)
- highlight.FillColor = Color3.fromRGB(0, 255, 0)
- local function processModel(model)
- if model.Name:lower() == "door" then
- -- Проверяем, есть ли в модели RemoteEvent с именем ClientOpen
- local hasClientOpen = false
- for _, child in ipairs(model:GetDescendants()) do
- if child:IsA("RemoteEvent") and child.Name == "ClientOpen" then
- hasClientOpen = true
- break
- end
- end
- if hasClientOpen then
- -- Создаем Highlight для этой модели, если его еще нет
- if not model:FindFirstChild("DoorHighlight") then
- local newHighlight = highlight:Clone()
- newHighlight.Adornee = model
- newHighlight.Parent = model
- print("Found door with ClientOpen at: " .. model:GetFullName())
- end
- else
- -- Удаляем Highlight, если он есть, но RemoteEvent отсутствует
- local existingHighlight = model:FindFirstChild("DoorHighlight")
- if existingHighlight then
- existingHighlight:Destroy()
- end
- end
- end
- end
- -- Обрабатываем все существующие модели
- for _, model in ipairs(workspace:GetDescendants()) do
- if model:IsA("Model") then
- processModel(model)
- end
- end
- -- Настраиваем отслеживание новых моделей
- workspace.DescendantAdded:Connect(function(descendant)
- if descendant:IsA("Model") then
- processModel(descendant)
- end
- end)
- end
- -- Запускаем поиск
- findAndHighlightDoors()
- end
- })
- Tabs.Grav:AddButton({
- Title = "шейдеры",
- Description = "Открывает настройку шейдеров",
- Callback = function()
- loadstring(game:HttpGet("https://pastebin.com/raw/mXAwCUEk"))()
- end
- })
- local Keybind = Tabs.bx:AddKeybind("Keybind", {
- Title = "ESP полезных вешей",
- Mode = "Toggle", -- Always, Toggle, Hold
- Default = "LeftControl", -- String as the name of the keybind (MB1, MB2 for mouse buttons)
- -- Occurs when the keybind is clicked, Value is `true`/`false`
- Callback = function(Value)
- print("Keybind clicked!", Value)
- loadstring(game:HttpGet('https://pastebin.com/raw/TwJZX2MC'))()
- end,
- -- Вкладка Игрока
- Tabs.bx:AddParagraph({
- Title = "Предуприждения на раша глаз уже вклучен",
- Content = "Подсказки вклучены "
- })
- })
- Tabs.Hub:AddButton({
- Title = "Хорошый хаб",
- Description = "Открывает хаб",
- Callback = function()
- loadstring(game:HttpGet("https://pastebin.com/raw/TwJZX2MC"))("t.me/Demonic_Scripts")
- end
- })
- Keybind:SetValue("MB2", "Toggle") -- Sets keybind to MB2, mode to Hold
- -- Initialize save system
- SaveManager:SetLibrary(Fluent)
- InterfaceManager:SetLibrary(Fluent)
- SaveManager:IgnoreThemeSettings()
- InterfaceManager:SetFolder("GraphicsEnhancer")
- SaveManager:SetFolder("GraphicsEnhancer/configs")
- InterfaceManager:BuildInterfaceSection(Tabs.Settings)
- SaveManager:BuildConfigSection(Tabs.Settings)
- Window:SelectTab(1)
- Fluent:Notify({
- Title = "Улучшение графики от 1qlua",
- Content = "Панель управления графикой успешно загружена!",
- Duration = 5
- })
- -- Load saved config
- SaveManager:LoadAutoloadConfig()
- loadstring(game:HttpGet('https://pastebin.com/raw/9rgPT57e'))()
- loadstring(game:HttpGet('https://pastebin.com/raw/pu4hEJiY'))()
- loadstring(game:HttpGet('https://pastebin.com/raw/wqQAEbvJ'))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement