Skip to content

Instantly share code, notes, and snippets.

@jinho3632
Created April 26, 2025 02:33
Show Gist options
  • Save jinho3632/426d86b7fb43c2b53b3264f8bf944187 to your computer and use it in GitHub Desktop.
Save jinho3632/426d86b7fb43c2b53b3264f8bf944187 to your computer and use it in GitHub Desktop.
허브입니다 기능적어요
-- 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