Created
April 26, 2025 02:33
-
-
Save jinho3632/426d86b7fb43c2b53b3264f8bf944187 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
-- MuscleHub (기본 UI 포함) | |
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() | |
local Window = Library.CreateLib("Muscle Hub", "DarkTheme") | |
-- 탭 생성 | |
local Main = Window:NewTab("메인") | |
local MainSection = Main:NewSection("자동 기능") | |
-- 자동 훈련 기능 | |
MainSection:NewToggle("자동 훈련", "훈련 장소로 이동해 자동으로 훈련합니다.", function(state) | |
_G.autoTrain = state | |
while _G.autoTrain do | |
local character = game.Players.LocalPlayer.Character | |
if character and character:FindFirstChild("HumanoidRootPart") then | |
character.HumanoidRootPart.CFrame = CFrame.new(100, 0, 100) | |
end | |
wait(0.5) | |
end | |
end) | |
-- 추가 기능은 여기에... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment