Kill Aura for a new retro-style roblox game
The Mystic Land 2 MMORPG script: Kill Aura
Kill Aura for a new retro-style roblox game
Place hub
The Mystic Land 2 MMORPG
1 scripts · 0 views
→
Kill Aura for a new retro-style roblox game
Place hub
The Mystic Land 2 MMORPG
1 scripts · 0 views
→
Kill Aura for a new retro-style roblox game
1 listed functions
Review the code before running it. Use scripts responsibly and only with tools you trust.
local Player = game:GetService("Players").LocalPlayer
local Workspace = game:GetService("Workspace")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local RunService = game:GetService("RunService")
local Character = Player.Character or Player.CharacterAdded:Wait()
local HumanoidRootPart = Character:WaitForChild("HumanoidRootPart")
local StartAttackEvent = ReplicatedStorage:WaitForChild("RemoteObject"):WaitForChild("RequestAttack")
local SetAttackEvent = ReplicatedStorage:WaitForChild("RemoteObject"):WaitForChild("SetAttacking")
local SetDataTarget = ReplicatedStorage:WaitForChild("RemoteObject"):WaitForChild("SetDataTarget")
local Range = 30
RunService.RenderStepped:Connect(function(...)
for _, obj in pairs(Workspace.Camera:GetChildren()) do
if obj:IsA("Model") and obj.Humanoid.Health > 0 then
local MobRoot = obj:FindFirstChild("HumanoidRootPart")
if MobRoot then
if (HumanoidRootPart.Position - MobRoot.Position).Magnitude <= Range then
SetDataTarget:FireServer(obj.Data.Value)
SetAttackEvent:FireServer(true)
StartAttackEvent:FireServer({{obj.Data.Value, 0}})
end
end
end
end
end)This script is currently marked as NO KEY.
Kill Aura
Copy the Lua code from the Script Code section and review it before running it in your preferred Roblox script executor.
Comments
0No comments yet.
You need to register or log in before liking scripts or posting comments.