Advertisement
SirMeme

R2DA Zombies ESP

Jan 4th, 2021
695
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.62 KB | None | 0 0
  1. ESP:AddObjectListener(workspace.Characters.Zombies, {
  2.     Color =  Color3.new(1,1,0),
  3.     Type = "Model",
  4.     PrimaryPart = function(obj)
  5.         local hrp = obj:FindFirstChildWhichIsA("BasePart")
  6.         while not hrp do
  7.             wait()
  8.             hrp = obj:FindFirstChildWhichIsA("BasePart")
  9.         end
  10.         return hrp
  11.     end,
  12.     Validator = function(obj)
  13.         return not game.Players:GetPlayerFromCharacter(obj)
  14.     end,
  15.     CustomName = function(obj)
  16.         return obj:FindFirstChild("Zombie") and obj.Zombie.Value or obj.Name
  17.     end,
  18.     IsEnabled = "NPCs",
  19. })
  20. --some toggle:
  21. ESP.NPCs = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement