Advertisement
Meliodas0_0

Jailbreak TP Gui

Oct 7th, 2019
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. local ui = loadstring(game:HttpGet("https://pastebin.com/raw/7Z6TzFnv", true))()
  2. local RS = game:GetService("ReplicatedStorage")
  3. local Glide = require(RS.Game.Paraglide)
  4. local Mode = "Glider"
  5. local window = ui:CreateWindow({
  6. text = "Jailbreak TP Gui"
  7. })
  8. window:AddBox("Player",function(plr,a)
  9. local plr = game:GetService'Players':FindFirstChild(plr.Text)
  10. if plr then
  11. Glide[Mode]()
  12. game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = plr.Character.HumanoidRootPart.CFrame + Vector3.new(1,0,0)
  13. wait(0.25)
  14. Glide[Mode.."Stop"]()
  15. end
  16. end)
  17. window:AddBox("Height",function(h,a)
  18. Glide[Mode]()
  19. game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService'Players'.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,h.Text,0)
  20. end)
  21. window:AddToggle("Parachute Mode",function(a)
  22. if a then
  23. Mode = "Parachute"
  24. else
  25. Mode = "Glider"
  26. end
  27. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement