Advertisement
Meliodas0_0

Airdrop esp

Aug 6th, 2019
314
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. local loc = game:GetService('Players').LocalPlayer.Character.UpperTorso
  2. local drops = game.Workspace.Drop:GetChildren()
  3.  
  4. for i,v in pairs(drops) do
  5. if v.Name == 'Briefcase' then
  6. if v.Transparency == 0 then
  7. local beam = Instance.new("Beam", loc)
  8. local A0 = Instance.new("Attachment", loc)
  9. local A1 = Instance.new("Attachment", v)
  10. beam.Attachment0 = A0
  11. beam.Attachment1 = A1
  12. beam.Color = ColorSequence.new(Color3.fromRGB(170,0,255),Color3.fromRGB(170,0,255))
  13. beam.Width0 = .15
  14. beam.Width1 = .15
  15. beam.FaceCamera = true
  16.  
  17. local espbox = Instance.new("BoxHandleAdornment")
  18. espbox.Parent = v
  19. espbox.Adornee = v
  20. espbox.Size = v.Size
  21. espbox.Transparency = 0.5
  22. espbox.AlwaysOnTop = true
  23. espbox.Color3 = Color3.fromRGB(170,0,255)
  24. espbox.ZIndex = 5
  25. end
  26. end
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement