-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSilentKillALLV1.lua
More file actions
39 lines (28 loc) · 1.17 KB
/
SilentKillALLV1.lua
File metadata and controls
39 lines (28 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
local playerList = game:GetService("Players"):GetChildren()
local you = game:GetService("Players").LocalPlayer
local focusTarget = game:GetService("Workspace")
local event = game:GetService("ReplicatedStorage").ThisGame.Calls.snowballProjectile
local icbm = "explodeLauncher" -- or you could use 'explodeSnowballProduct' but it does not work as well so just buy a launcher
--local count = 0
local allTargets = {}
--local currentTarget = {}
function getTargets()
for _, v in pairs(playerList) do
if v ~= you and v.localData.playerSettings.pvp.value ~= false then
table.insert(allTargets, v)
print("[Target Added] " .. v.name)
end
end
end
getTargets()
for _, v in pairs(allTargets) do
print("[Current Target]: " .. v.name)
repeat
wait(0.38)
--me.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,8)
event:FireServer(icbm, v.Character.HumanoidRootPart.CFrame.p)
--count = count + 1
print("[Targets Heath] " .. v.Character.Humanoid.Health)
until v.Character.Humanoid.Health == 0
print("Target " .. "[" .. v.name .. "]" .. " Elimated")
end