Advertisement
Meliodas0_0

tp jb bypass

Oct 7th, 2019
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local TPHax = Instance.new("ScreenGui")
  5. local Lol = Instance.new("Frame")
  6. local TP = Instance.new("TextButton")
  7. local TG = Instance.new("TextButton")
  8. local PH = Instance.new("TextBox")
  9. local SM = Instance.new("TextButton")
  10. --Properties:
  11. TPHax.Name = "TPHax"
  12. TPHax.Parent = game.CoreGui
  13. TPHax.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. Lol.Name = "Lol"
  16. Lol.Parent = TPHax
  17. Lol.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  18. Lol.Position = UDim2.new(0.675324678, 0, 0.763406932, 0)
  19. Lol.Size = UDim2.new(0, 250, 0, 150)
  20.  
  21. TP.Name = "TP"
  22. TP.Parent = Lol
  23. TP.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  24. TP.Size = UDim2.new(0, 200, 0, 50)
  25. TP.Font = Enum.Font.Cartoon
  26. TP.Text = "TP"
  27. TP.TextColor3 = Color3.new(1, 1, 1)
  28. TP.TextScaled = true
  29. TP.TextSize = 14
  30. TP.TextWrapped = true
  31.  
  32. TG.Name = "TG"
  33. TG.Parent = Lol
  34. TG.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  35. TG.Position = UDim2.new(0, 0, 0.333333343, 0)
  36. TG.Size = UDim2.new(0, 200, 0, 50)
  37. TG.Font = Enum.Font.Cartoon
  38. TG.Text = "TP Glide"
  39. TG.TextColor3 = Color3.new(1, 1, 1)
  40. TG.TextScaled = true
  41. TG.TextSize = 14
  42. TG.TextWrapped = true
  43.  
  44. PH.Name = "PH"
  45. PH.Parent = Lol
  46. PH.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  47. PH.Position = UDim2.new(0, 0, 0.666666687, 0)
  48. PH.Size = UDim2.new(0, 200, 0, 50)
  49. PH.Font = Enum.Font.Cartoon
  50. PH.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  51. PH.PlaceholderText = "Player / Highness?"
  52. PH.Text = ""
  53. PH.TextColor3 = Color3.new(1, 1, 1)
  54. PH.TextScaled = true
  55. PH.TextSize = 14
  56. PH.TextWrapped = true
  57.  
  58. SM.Name = "SM"
  59. SM.Parent = Lol
  60. SM.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  61. SM.Position = UDim2.new(0.800000012, 0, 0, 0)
  62. SM.Size = UDim2.new(0, 50, 0, 150)
  63. SM.Font = Enum.Font.Cartoon
  64. SM.Text = "Switch Modes"
  65. SM.TextColor3 = Color3.new(1, 1, 1)
  66. SM.TextScaled = true
  67. SM.TextSize = 14
  68. SM.TextWrapped = true
  69. -- Scripts:
  70. local RS = game:GetService("ReplicatedStorage")
  71. local Glide = require(RS.Game.Paraglide)
  72. local Mode = "Glider"
  73. TP.MouseButton1Up:Connect(function()
  74. local plr = game:GetService'Players':FindFirstChild(PH.Text)
  75. if plr then
  76. Glide[Mode]()
  77. game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = plr.Character.HumanoidRootPart.CFrame + Vector3.new(1,0,0)
  78. wait(0.25)
  79. Glide[Mode.."Stop"]()
  80. end
  81. end)
  82. TG.MouseButton1Up:Connect(function()
  83. Glide[Mode]()
  84. game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,PH.Text,0)
  85. end)
  86. SM.MouseButton1Up:Connect(function()
  87. if Mode == "Glider" then
  88. Mode = "Parachute"
  89. else
  90. Mode = "Glider"
  91. end
  92. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement