Advertisement
Honansik

Vampire Hunters 3 Vampire ESP Script

May 17th, 2022
2,911
1
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.82 KB | None | 1 0
  1. for i,v in pairs(game.Workspace:GetDescendants()) do
  2.     if v.Name == "ExpressionID" then
  3.         v.Changed:Connect(function(c)
  4.             if v.Value == 3 then
  5.                 local bill = Instance.new("BillboardGui", v.Parent.Parent.Head)
  6.                 bill.Name = "RoleESP"
  7.                 bill.Size = UDim2.new(1,40,1,40)
  8.                 bill.Adornee = v.Parent.Parent.Head
  9.                 bill.AlwaysOnTop = true
  10.                 local name = Instance.new("TextLabel", bill)
  11.                 name.TextWrapped = true
  12.                 name.Text = "Vampire"
  13.                 name.Size = UDim2.new(1,0,1,0)
  14.                 name.TextYAlignment = "Top"
  15.                 name.TextColor3 = Color3.fromRGB(111, 28, 255)
  16.                 name.BackgroundTransparency = 1
  17.                 wait()
  18.             end
  19.         end)
  20.     end
  21. end
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement