ScriptBlox is undergoing maintenance, so downtime is possible. Sorry for the inconvenience!
99 Nights in the Forest 🔦
701 Views

99Hub Chop Aura Kill Aura 99 Nights

99 Nights in the Forest 🔦Uploaded by
5 months ago
Please login to perform these actions:

Description

By chatgpt create This is made by chatgpt so will have some bug

View Raw
Edited By: Ywuyirong Download


Comments
2
User profile picture
Ywuyirong 5 months ago
--// 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" t
User profile picture
Ywuyirong 5 months ago
--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] --// 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(work
Please Login to add a comment.