Advertisement
SwaggerTv

Jailbreak Airdrop ESP Script

May 26th, 2021
403
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1.  
  2. --BROUGHT TO YOU BY RSCRIPTS.NET!--
  3.  
  4. workspace.ChildAdded:connect(function(v)
  5. wait(1)
  6. if v.Name == "Drop" and v:IsA("Model") then
  7. print("D4rk air drop detector")
  8.  
  9. wait(1.2)
  10. game.StarterGui:SetCore("SendNotification", {
  11. Title = "AIR DROP"; -- the title (ofc)
  12. Text = "Air drop, - a air drop is on the map";
  13. Icon = "rbxassetid://57254792";
  14. Duration = 5;
  15. })
  16.  
  17. wait(1)
  18. while true do wait(2)
  19. for i,v in pairs(workspace.Drop:GetChildren()) do
  20. if v.Transparency == 0 then
  21. a = Instance.new("BillboardGui", v)
  22. a.Size = UDim2.new(0,20,0,20)
  23. a.AlwaysOnTop = true
  24. b = Instance.new("TextLabel", a)
  25. b.Size = UDim2.new(0,20,0,20)
  26. b.Text = "Airdrop"
  27. b.BackgroundTransparency = 1
  28. b.TextColor3 = Color3.fromRGB(255,255,0)
  29. b.TextStrokeTransparency = 0
  30. end
  31. end
  32.  
  33. v:GetPropertyChangedSignal("Transparency"):Connect(function()
  34. v.BillboardGui:Destroy()
  35. end)
  36. end
  37.  
  38. end
  39. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement