Advertisement
kleber1234

Jailbreak - Airdrop Teleport

May 25th, 2019
479
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 KB | None | 0 0
  1. --[[Tp Time1 To The Next Airdrop,(Seconds),
  2. Time2 Between Respawn and Teleport To The Airdrop]]--
  3.  
  4. -- Config:
  5.  
  6. Time1 = 13
  7. Time2 = 0
  8.  
  9. -- Script:
  10.  
  11. local ScreenGui = Instance.new("ScreenGui")
  12. local Frame = Instance.new("Frame")
  13. local Tp = Instance.new("TextButton")
  14. local Frame_2 = Instance.new("Frame")
  15. local Tp2 = Instance.new("TextButton")
  16.  
  17. --Properties:
  18. ScreenGui.Parent = game.CoreGui
  19.  
  20. Frame.Parent = ScreenGui
  21. Frame.BackgroundColor3 = Color3.new(0.407843, 0.113725, 1)
  22. Frame.Position = UDim2.new(0.860090733, 0, 0.513944268, 0)
  23. Frame.Size = UDim2.new(0, 191, 0, 46)
  24.  
  25. Tp.Name = "Tp"
  26. Tp.Parent = Frame
  27. Tp.BackgroundColor3 = Color3.new(0.988235, 1, 0.192157)
  28. Tp.Position = UDim2.new(0.0477671996, 0, 0.14022164, 0)
  29. Tp.Size = UDim2.new(0, 174, 0, 33)
  30. Tp.Font = Enum.Font.SourceSans
  31. Tp.Text = "Get Airdrop"
  32. Tp.TextColor3 = Color3.new(0, 0, 0)
  33. Tp.TextScaled = true
  34. Tp.TextSize = 14
  35. Tp.TextWrapped = true
  36.  
  37. Frame_2.Parent = ScreenGui
  38. Frame_2.BackgroundColor3 = Color3.new(0.407843, 0.113725, 1)
  39. Frame_2.Position = UDim2.new(0.860090733, 0, 0.621513963, 0)
  40. Frame_2.Size = UDim2.new(0, 191, 0, 46)
  41. Frame_2.Visible = false
  42.  
  43. Tp2.Name = "Tp2"
  44. Tp2.Parent = Frame_2
  45. Tp2.BackgroundColor3 = Color3.new(0.988235, 1, 0.192157)
  46. Tp2.Position = UDim2.new(0.0477671996, 0, 0.14022164, 0)
  47. Tp2.Size = UDim2.new(0, 174, 0, 33)
  48. Tp2.Font = Enum.Font.SourceSans
  49. Tp2.Text = "Check More Airdrops"
  50. Tp2.TextColor3 = Color3.new(0, 0, 0)
  51. Tp2.TextScaled = true
  52. Tp2.TextSize = 14
  53. Tp2.TextWrapped = true
  54. Tp2.Visible = false
  55.  
  56. -- Scripts:
  57.  
  58. Tp.MouseButton1Down:Connect(function()
  59. Frame.Visible = false
  60. Tp.Visible = false
  61. wait()
  62. game:GetService('Players').LocalPlayer.Character.Head:remove()
  63. wait(0.3)
  64. game:GetService('Players').LocalPlayer.Character:remove()
  65. wait(Time2)
  66.  
  67. game:GetService('Players').LocalPlayer.CharacterAdded:connect(function(char)
  68. wait(0.3)
  69. if not workspace:FindFirstChild("Drop") then
  70. wait(0.9)
  71. Frame_2.Visible = true
  72. Tp2.Visible = true
  73. end
  74. if workspace:FindFirstChild("Drop") then
  75. Instance.new("CFrameValue").Value = game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame
  76. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame*CFrame.new(0,19,0)
  77. wait(0.3)
  78. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = Instance.new("CFrameValue").Value
  79. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = game.workspace.Drop.Briefcase.CFrame
  80. wait(Time1)
  81. game:GetService('Players').LocalPlayer.Character.Head:remove()
  82. wait(0.3)
  83. game:GetService('Players').LocalPlayer.Character:remove()
  84. end
  85. char.ChildAdded:connect(function(ch)
  86. print(ch.Name)
  87. end)
  88. end)
  89. end)
  90.  
  91. Tp2.MouseButton1Down:Connect(function()
  92. if workspace:FindFirstChild("Drop") then
  93. Tp2.Visible = false
  94. Frame_2.Visible = false
  95. game:GetService('Players').LocalPlayer.Character.Head:remove()
  96. wait(0.3)
  97. game:GetService('Players').LocalPlayer.Character:remove()
  98. wait(Time1)
  99. Tp2.Visible = true
  100. Frame_2.Visible = true
  101. end
  102. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement