Last active
July 7, 2026 04:08
-
-
Save DuyNgao2306/5afa45971bf66d24c6e8b69fc361f970 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- 1. TẢI THƯ VIỆN GIAO DIỆN (UI LIBRARY) | |
| local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))() | |
| -- 2. TẠO CỬA SỔ CHÍNH (WINDOW) | |
| local Window = OrionLib:MakeWindow({ | |
| Name = "Vxeze Hub Clone (Bản Thử Nghiệm)", | |
| HidePremium = false, | |
| SaveConfig = false, | |
| ConfigFolder = "OrionTest" | |
| }) | |
| -- 3. TẠO CÁC TAB MENU (Thanh bên trái) | |
| local TabFarm = Window:MakeTab({ Name = "Farm", Icon = "rbxassetid://4483345998" }) | |
| local TabMisc = Window:MakeTab({ Name = "Tiện Ích", Icon = "rbxassetid://4483345998" }) | |
| -- ========================================== | |
| -- PHẦN LOGIC TÍNH NĂNG 1: AUTO CLICK (Trong Tab Farm) | |
| -- ========================================== | |
| _G.AutoClick = false -- Biến kiểm tra trạng thái bật/tắt | |
| TabFarm:AddToggle({ | |
| Name = "Auto Click (Tự Đánh)", | |
| Default = false, | |
| Callback = function(Value) | |
| _G.AutoClick = Value -- Gán trạng thái True/False khi gạt nút | |
| if Value then | |
| -- Tạo một luồng chạy ngầm để không bị đơ game | |
| task.spawn(function() | |
| local VirtualUser = game:GetService("VirtualUser") | |
| while _G.AutoClick do | |
| -- Giả lập hành động nhấn chuột trái | |
| VirtualUser:Button1Down(Vector2.new(0,0), game.Workspace.CurrentCamera.CFrame) | |
| task.wait(0.1) -- Cứ 0.1 giây click 1 lần | |
| end | |
| end) | |
| end | |
| end | |
| }) | |
| -- ========================================== | |
| -- PHẦN LOGIC TÍNH NĂNG 2: TỐC ĐỘ (Trong Tab Tiện Ích) | |
| -- ========================================== | |
| TabMisc:AddSlider({ | |
| Name = "Tốc Độ Chạy (WalkSpeed)", | |
| Min = 16, -- Tốc độ mặc định của Roblox | |
| Max = 200, -- Tốc độ tối đa | |
| Default = 16, | |
| Color = Color3.fromRGB(255,255,255), | |
| Increment = 1, | |
| ValueName = "Tốc độ", | |
| Callback = function(Value) | |
| -- Thay đổi tốc độ trực tiếp của nhân vật | |
| game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value | |
| end | |
| }) | |
| -- 4. KÍCH HOẠT MENU | |
| OrionLib:Init() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment