Advertisement
UpdateHub

pfESP

Apr 7th, 2022
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.89 KB | None | 0 0
  1. for i, v in pairs(game.Workspace:GetChildren()) do
  2.     if v:IsA("Folder") and v.Name == "Players" then
  3.         for i, b in pairs(v:GetChildren()) do
  4.             if b:IsA("Folder") and b.Name == "Bright orange" then
  5.                 for i, n in pairs(b:GetChildren()) do
  6.                     if n:IsA("Model") and n.Name == "Player" then
  7.                         for i, m in pairs(n:GetChildren()) do
  8.                             if m:IsA("Part") then
  9.                                 local esp = Instance.new("BoxHandleAdornment")
  10.                                 esp.Transparency = .5
  11.                                 esp.Parent = m
  12.                                 esp.Adornee = m
  13.                                 esp.Color3 = Color3.fromRGB(231, 98, 20)
  14.                                 esp.Size = m.Size
  15.                                 esp.ZIndex = 0
  16.                                 esp.Visible = true
  17.                                 esp.AlwaysOnTop = true
  18.                             end
  19.                         end
  20.                     end
  21.                 end
  22.             end
  23.         end
  24.     end
  25. end
  26.  
  27. for i, v in pairs(game.Workspace:GetChildren()) do
  28.     if v:IsA("Folder") and v.Name == "Players" then
  29.         for i, b in pairs(v:GetChildren()) do
  30.             if b:IsA("Folder") and b.Name == "Bright blue" then
  31.                 for i, n in pairs(b:GetChildren()) do
  32.                     if n:IsA("Model") and n.Name == "Player" then
  33.                         for i, m in pairs(n:GetChildren()) do
  34.                             if m:IsA("Part") then
  35.                                 local esp = Instance.new("BoxHandleAdornment")
  36.                                 esp.Transparency = .5
  37.                                 esp.Parent = m
  38.                                 esp.Adornee = m
  39.                                 esp.Color3 = Color3.fromRGB(22, 8, 216)
  40.                                 esp.Size = m.Size
  41.                                 esp.ZIndex = 0
  42.                                 esp.Visible = true
  43.                                 esp.AlwaysOnTop = true
  44.                             end
  45.                         end
  46.                     end
  47.                 end
  48.             end
  49.         end
  50.     end
  51. end
  52.  
  53.  
  54. for i, v in pairs(game.Workspace:GetChildren()) do
  55.     if v:IsA("Folder") and v.Name == "Players" then
  56.         for i, b in pairs(v:GetChildren()) do
  57.             if b:IsA("Folder") then
  58.                 b.ChildAdded:Connect(function(child)
  59.                     if child.Name == "Player" and b.Name == "Bright orange" then
  60.                         for i, e in pairs(child:GetChildren()) do
  61.                             if e:IsA("Part") then
  62.                                 local esp = Instance.new("BoxHandleAdornment")
  63.                                 esp.Transparency = .5
  64.                                 esp.Parent = e
  65.                                 esp.Adornee = e
  66.                                 esp.Color3 = Color3.fromRGB(231, 98, 20)
  67.                                 esp.Size = e.Size
  68.                                 esp.ZIndex = 0
  69.                                 esp.Visible = true
  70.                                 esp.AlwaysOnTop = true
  71.                             end
  72.                         end
  73.                     end
  74.                 end)
  75.             end
  76.         end
  77.     end
  78. end
  79.  
  80. for i, v in pairs(game.Workspace:GetChildren()) do
  81.     if v:IsA("Folder") and v.Name == "Players" then
  82.         for i, b in pairs(v:GetChildren()) do
  83.             if b:IsA("Folder") then
  84.                 b.ChildAdded:Connect(function(child)
  85.                     if child.Name == "Player" and b.Name == "Bright blue" then
  86.                         for i, e in pairs(child:GetChildren()) do
  87.                             if e:IsA("Part") then
  88.                                 local esp = Instance.new("BoxHandleAdornment")
  89.                                 esp.Transparency = .5
  90.                                 esp.Parent = e
  91.                                 esp.Adornee = e
  92.                                 esp.Color3 = Color3.fromRGB(22, 8, 216)
  93.                                 esp.Size = e.Size
  94.                                 esp.ZIndex = 0
  95.                                 esp.Visible = true
  96.                                 esp.AlwaysOnTop = true
  97.                             end
  98.                         end
  99.                     end
  100.                 end)
  101.             end
  102.         end
  103.     end
  104. end
  105.  
  106. for i, v in pairs(game.Workspace:GetChildren()) do
  107.     if v:IsA("Folder") and v.Name == "Ignore" then
  108.         for i, b in pairs(v:GetChildren()) do
  109.             if b:IsA("Folder") then
  110.                 b.ChildAdded:Connect(function(child)
  111.                     if child.Name == "Dead" and b.Name == "DeadBody" then
  112.                         for i, e in pairs(child:GetChildren()) do
  113.                             if e:IsA("Part") then
  114.                                 e:FindFirstChild("BoxHandleAdornment"):Destroy()
  115.                             end
  116.                         end
  117.                     end
  118.                 end)
  119.             end
  120.         end
  121.     end
  122. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement