-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArsenalHitboxExtender.txt
32 lines (32 loc) · 1.23 KB
/
ArsenalHitboxExtender.txt
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
function getnames()
for i, v in pairs(game:GetChildren()) do
if v.ClassName == "Players" then
return v.Name
end
end
end
local players = getnames()
local LP = game:GetService("Players").LocalPlayer
coroutine.resume(
coroutine.create(
function()
while wait(1) do
coroutine.resume(
coroutine.create(
function()
for _, v in pairs(game:GetService("Players"):GetPlayers()) do
if v.Name ~= LP.Name and v.Character.UpperTorso.Color ~= LP.Character.UpperTorso.Color then
v.Character.LowerTorso.CanCollide = false
v.Character.LowerTorso.Material = "Neon"
v.Character.LowerTorso.Transparency = 1
v.Character.LowerTorso.Size = Vector3.new(15, 15, 15)
v.Character.HumanoidRootPart.Size = Vector3.new(15, 15, 15)
end
end
end
)
)
end
end
)
)