ADVERTISEMENTREMOVE ADS
Game icon

Auto Attack (Killaura)

Prison Life
2 weeks ago
Script preview thumbnail
Script Preview

Description

This works for the new update so have fun with it :)

Automatically attack players around you.

Features:

  • Aura

Tested with

ADVERTISEMENTREMOVE ADS
44 Lines • 1.05 KiB
Raw
--[[
Auto Attack (Killaura)
Kills the closest player towards you
-- [ stav.lua ] --
]]
shared.Aura = true
local cloneref = cloneref or function(obj)
return obj
end
local playersService = cloneref(game:GetService('Players'))
local replicatedStorage = cloneref(game:GetService('ReplicatedStorage'))
local lplr = playersService.LocalPlayer
local function getClosestPlayer()
local closestdist, closestplr = math.huge, nil
for i,v in playersService:GetPlayers() do
if v == lplr then continue end
pcall(function()
local dist = lplr:DistanceFromCharacter(v.Character.PrimaryPart.Position)
if dist < 6 and dist < closestdist then
closestdist = dist
closestplr = v
end
end)
end
return closestplr
end
task.spawn(function()
repeat
local plr = getClosestPlayer()
if plr then
replicatedStorage.meleeEvent:FireServer(plr)
end
task.wait()
until not shared.Aura
end)
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS