ADVERTISEMENTREMOVE ADS
Game icon

Kill All Melee Aura AutoFarm FULL OP

Script preview thumbnail
Script Preview

Description

-- you can use it for your hub

-- you need a KnifeStandart (default knife)

-- equip KnifeStandart and use it

-- full bypassed anti cheat

-- ez auto farm diamonds

ADVERTISEMENTREMOVE ADS
44 Lines β€’ 1.43 KiB
Raw
-- https://rscripts.net/@redux
-- https://www.roblox.com/games/15253551769/WARMIX-PVP-FPS-Weapon-Battles-Shooter-Gun
local melee = {
enabled = true,
range = 999 -- aka distance
}
local rs = game:GetService("ReplicatedStorage")
local plr = game:GetService("Players")
local wrkspc = game:GetService("Workspace")
local lp = plr.LocalPlayer
local damage = rs:WaitForChild("BlasterKnifeEvent")
local function getmelee()
if wrkspc:FindFirstChild(lp.Name) then
return wrkspc[lp.Name]:FindFirstChild("KnifeStandart")
end
return nil
end
local function getDistance(pos1, pos2)
return (pos1 - pos2).Magnitude
end
task.spawn(function()
while task.wait(0.2) do
if melee.enabled then
local humanoid = lp.Character and lp.Character:FindFirstChild("HumanoidRootPart")
local knife = getmelee()
if humanoid and knife then
for _, player in pairs(plr:GetPlayers()) do
if player ~= lp and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
local enemy = player.Character.HumanoidRootPart
if getDistance(humanoid.Position, enemy.Position) <= melee.range then
damage:FireServer("KnifeStandart", player)
end
end
end
end
end
end
end)
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS