Our Discord Channel Our Telegram

Script Description

Kill Aura

Key Functions

1 listed functions

✓ Kill Aura

Script Code

29 lines · 985 B · Lua

Review the code before running it. Use scripts responsibly and only with tools you trust.

local Workspace = game:GetService("Workspace")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Players = game:GetService("Players")
local Player = Players.LocalPlayer
local Character = Player.Character or Player.CharacterAdded:Wait()
local DamageRemote = ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("DealDamage")

local MobFolders = {
	Workspace:WaitForChild("Mobs"):WaitForChild("Regular"),
	Workspace:WaitForChild("Mobs"):WaitForChild("MegaBoss"),
}

local RANGE = 35

task.spawn(function()
	while task.wait(0.01) do
		local root = Character:FindFirstChild("HumanoidRootPart")
		for _, folder in ipairs(MobFolders) do
			for _, obj in ipairs(folder:GetChildren()) do
				local MobRoot = obj:FindFirstChild("HumanoidRootPart")
				if obj:IsA("Model") and obj.Parent and MobRoot then
					if (MobRoot.Position - root.Position).Magnitude <= RANGE then
						DamageRemote:FireServer(obj)
					end
				end
			end
		end
	end
end)

FAQ

Is this Legend of Zominus RPG script keyless?

This script is currently marked as NO KEY.

What features does this script include?

Kill Aura

How do I use this script?

Copy the Lua code from the Script Code section and review it before running it in your preferred Roblox script executor.

Comments

0

No comments yet.