--// 99Hub | Chop Aura + Kill Aura --// Game: 99 Nights --// Author: You local Players = game:GetService("Players") local RunService = game:GetService("RunService") local LocalPlayer = Players.LocalPlayer local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait() -- SETTINGS local CHOP_RANGE = 18 local KILL_RANGE = 20 local ChopAura = false local KillAura = false -- UI (Simple) local ScreenGui = Instance.new("ScreenGui", game.CoreGui) ScreenGui.Name = "99Hub" local Frame = Instance.new("Frame", ScreenGui) Frame.Size = UDim2.new(0, 200, 0, 120) Frame.Position = UDim2.new(0, 20, 0.4, 0) Frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) local function createButton(text, posY) local btn = Instance.new("TextButton", Frame) btn.Size = UDim2.new(1, -20, 0, 40) btn.Position = UDim2.new(0, 10, 0, posY) btn.Text = text btn.BackgroundColor3 = Color3.fromRGB(60,60,60) btn.TextColor3 = Color3.new(1,1,1) btn.BorderSizePixel = 0 return btn end local ChopBtn = createButton("Chop Aura: OFF", 10) local KillBtn = createButton("Kill Aura: OFF", 60) -- TOGGLES ChopBtn.MouseButton1Click:Connect(function() ChopAura = not ChopAura ChopBtn.Text = "Chop Aura: " .. (ChopAura and "ON" or "OFF") end) KillBtn.MouseButton1Click:Connect(function() KillAura = not KillAura KillBtn.Text = "Kill Aura: " .. (KillAura and "ON" or "OFF") end) -- FUNCTIONS local function getRoot(char) return char:FindFirstChild("HumanoidRootPart") end -- MAIN LOOP RunService.Heartbeat:Connect(function() Character = LocalPlayer.Character if not Character or not getRoot(Character) then return end local root = getRoot(Character) -- CHOP AURA if ChopAura then for _,v in pairs(workspace:GetDescendants()) do -- 🔧 這裡改成遊戲實際的「樹 / 木頭」名稱 if v.Name == "Tree" or v.Name == "Log" then if v:IsA("Model") and v.PrimaryPart then if (v.PrimaryPart.Position - root.Position).Magnitude <= CHOP_RANGE then pcall(function() firetouchinterest(root, v.PrimaryPart, 0) firetouchinterest(root, v.PrimaryPart, 1) end) end end end end end -- KILL AURA if KillAura then for _,mob in pairs(workspace:GetDescendants()) do if mob:FindFirstChild("Humanoid") and mob ~= Character then local mobRoot = getRoot(mob) if mobRoot and (mobRoot.Position - root.Position).Magnitude <= KILL_RANGE then pcall(function() firetouchinterest(root, mobRoot, 0) firetouchinterest(root, mobRoot, 1) end) end end end end end)