Upscalefanatic3

(Roblox) Before The Dawn 2 Item ESP

Feb 2nd, 2021 (edited)
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.42 KB | None | 0 0
  1. -- Made by: Upscalefanatic3 on V3rmillion.net
  2.  
  3. --[[ITEMS: WoodenChest, Bandage, Bottle, GearCharge, Lockpick,
  4. MetalDoor, WoodenDoor, ReviveKit, SlasherEntrance, TokenBag,
  5. TrashCans, GeneratorBattery, Battery, Boat, GasCan, PowerBoxScrewdriver,
  6. Wrench, Fuse, Helicopter, Small Garage Door, Sliding Garage Door, Large Garage Door,
  7. Catacombs Door, Stone Door, Large Stone Door, BlackLightContainer, SubstationFuse, PowerSubstation]]
  8.  
  9.  
  10. -- Input these depending on the Map and Action Needed.
  11. -- Refuel the Turbines(Ghoul Map) = GasCan
  12. -- Fix Utility Poles(Wednesday the 11th Map) = Wrench
  13. -- Restore The Substations(Wednesday the 11th Map) = Fuse Needed | SubstationFuse
  14. -- Restoring The Power(Ghoul Map) = GasCan
  15. -- Fix PowerBox(Sewer Map) = PowerBoxScrewdriver
  16.  
  17.  
  18. -- Don't know how to increase it all, first time making esp so hope you enjoy it.
  19. for __,v in pairs(game.workspace.TempMap.Main:GetDescendants()) do
  20.  if v.Name == "GasCan" then -- the item
  21.    local a = Instance.new("BillboardGui",v)
  22.    a.Name = "BTD2ESP"
  23.    a.Size = UDim2.new(10,0, 10,0)
  24.    a.AlwaysOnTop = true
  25.    local b = Instance.new("Frame",a)
  26.    b.Size = UDim2.new(1,0, 1,0)
  27.    b.BackgroundTransparency = 0.80
  28.    b.BorderSizePixel = 0
  29.    b.BackgroundColor3 = Color3.new(0, 255, 0)
  30.    local c = Instance.new('TextLabel',b)
  31.    c.Size = UDim2.new(2,0,2,0)
  32.    c.BorderSizePixel = 0
  33.    c.TextSize = 20
  34.    c.Text = v.Name
  35.    c.BackgroundTransparency = 1
  36.  end
  37. end
Add Comment
Please, Sign In to add comment