Advertisement
RN_MODZ

airdrop esp jailbreak

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