From 1815ab2ffd7895c24da43057ad6cc758f0c69372 Mon Sep 17 00:00:00 2001 From: Niko <124378025+happy1063@users.noreply.github.com> Date: Tue, 13 May 2025 14:35:29 +0300 Subject: [PATCH] Delete anti-invis.txt --- anti-invis.txt | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 anti-invis.txt diff --git a/anti-invis.txt b/anti-invis.txt deleted file mode 100644 index a5577e9..0000000 --- a/anti-invis.txt +++ /dev/null @@ -1,25 +0,0 @@ ---@name anti - invis ---@author cool-bro ---@owneronly ---@client ---[[ -Make visible invisible entities ---]] -local z = 0 -hook.add("Tick","h",function() - if z == 0 then - z = 1 - timer.simple(1,function() - local props = find.inSphere(owner():getPos(),2000) - for i =1 , table.count(props) do - if props[i]:isValid() and props[i]:getColor()[4] < 150 and props[i]:getClass() != "gmod_wire_hologram" then - props[i]:setColor(Color(props[i]:getColor()[1],props[i]:getColor()[2],props[i]:getColor()[3],255)) - end - if props[i]:isValid() and props[i]:getColor()[4] < 150 and props[i]:getClass() != "gmod_wire_hologram" then - props[i]:setColor(Color(props[i]:getColor()[1],props[i]:getColor()[2],props[i]:getColor()[3],0)) - end - end - z = 0 -end) -end -end)