From venuslockscript, 6 Months ago, written in Lua.
Embed
  1. while wait(3) do
  2. for i,v in pairs(game:GetService("Workspace").Animals:GetDescendants()) do
  3.    if v.ClassName == 'Part' and v.Name == 'HumanoidRootPart' then
  4.        
  5.        local BillboardGui = Instance.new('BillboardGui')
  6.        local TextLabel = Instance.new('TextLabel')
  7.        if not v.Parent:FindFirstChild("Animal Esp") then
  8.        BillboardGui.Parent = v.Parent
  9.        BillboardGui.AlwaysOnTop = true
  10.        BillboardGui.Size = UDim2.new(0, 50, 0, 50)
  11.        BillboardGui.StudsOffset = Vector3.new(0,2,0)
  12.        BillboardGui.Name = 'Animal Esp'
  13.  
  14.        TextLabel.Parent = BillboardGui
  15.        TextLabel.BackgroundColor3 = Color3.new(1,1,1)
  16.        TextLabel.BackgroundTransparency = 1
  17.        TextLabel.Size = UDim2.new(1, 0, 1, 0)
  18.        TextLabel.Text = v.Parent.AnimalType.Value
  19.        TextLabel.TextColor3 = Color3.new(1, 0, 0)
  20.        TextLabel.TextScaled = false
  21. if v.Parent.AnimalType.Value == "Dire Wolf" then
  22. game.StarterGui:SetCore("SendNotification", {
  23. Title = "Animal Notifier";
  24. Text = "Dire Wolf has spawned";
  25. Button1 = "Okay";
  26. Duration = 10000;
  27. })
  28.    end
  29.    end
  30. end
  31. end
  32. end