Advertisement
Guest User

arsenal ESP script

a guest
Jan 16th, 2023
1,536
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.95 KB | Gaming | 0 0
  1. local color = BrickColor.new(255,0,0)
  2. local transparency = .8
  3.  
  4. local Players = game:GetService("Players")
  5. local function _ESP(c)
  6.     repeat wait() until c.PrimaryPart ~= nil
  7.     for i,p in pairs(c:GetChildren()) do
  8.         if p.ClassName == "Part" or p.ClassName == "MeshPart" then
  9.             if p:FindFirstChild("shit") then p.shit:Destroy() end
  10.             local a = Instance.new("BoxHandleAdornment",p)
  11.             a.Name = "shit"
  12.             a.Size = p.Size
  13.             a.Color = color
  14.             a.Transparency = transparency
  15.             a.AlwaysOnTop = true    
  16.             a.Visible = true    
  17.             a.Adornee = p
  18.             a.ZIndex = true    
  19.  
  20.         end
  21.     end
  22. end
  23. local function ESP()
  24.     for i,v in pairs(Players:GetChildren()) do
  25.         if v ~= game.Players.LocalPlayer then
  26.             if v.Character then
  27.                 _ESP(v.Character)
  28.             end
  29.             v.CharacterAdded:Connect(function(chr)
  30.                 _ESP(chr)
  31.             end)
  32.         end
  33.     end
  34.     Players.PlayerAdded:Connect(function(player)
  35.         player.CharacterAdded:Connect(function(chr)
  36.             _ESP(chr)
  37.         end)  
  38.     end)
  39. end
  40. ESP()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement