JannickP8

prison life gui by Axtra

Dec 5th, 2021 (edited)
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.00 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("prison life gui by Axtra", "Sentinel")
  3.  
  4.  
  5.  
  6. local Tab = Window:NewTab("Local Player")
  7. local Section = Tab:NewSection("miscs")
  8. Section:NewSlider("Walkspeed", "", 400, 16, function(s) -- 500 (MaxValue) | 0 (MinValue)
  9.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  10. end)
  11.  
  12.  
  13. Section:NewSlider("Jumppower", "", 500, 50, function(s) -- 500 (MaxValue) | 0 (MinValue)
  14.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  15. end)
  16. Section:NewButton("Q to TP", "q for tp", function()
  17.     loadstring(game:HttpGet('https://pastebin.com/raw/ECe9x1Fs'))()
  18. end)
  19. Section:NewButton("Reset", "Reset urself", function()
  20.      game.Players.LocalPlayer.Character.Humanoid.Health = 0
  21. end)
  22.  
  23.  
  24.  
  25. local Tab = Window:NewTab("teleport to weapons")
  26. local Section = Tab:NewSection("teleport")
  27. Section:NewButton("Teleport to Guard Weapons", "", function()
  28.     local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  29. local location = CFrame.new(823, 100, 2252)
  30. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  31. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  32. wait(0.1)
  33. pl.CFrame = location
  34.  
  35. end)
  36.  
  37.  
  38. Section:NewButton("Teleport to Criminal Weapons", "", function()
  39.     local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  40. local location = CFrame.new(-944, 94, 2064)
  41. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  42. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  43. wait(0.1)
  44. pl.CFrame = location
  45.  
  46. end)
  47.  
  48.  
  49. local Tab = Window:NewTab("teleport")
  50. local Section = Tab:NewSection("teleport")
  51. Section:NewButton("Teleport in prison cafeteria", "", function()
  52.     local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  53. local location = CFrame.new(875, 99, 2305)
  54. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  55. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  56. wait(0.1)
  57. pl.CFrame = location
  58.  
  59. end)
  60. Section:NewButton("Teleport in prison cell room", "", function()
  61.     local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  62. local location = CFrame.new(917, 99, 2456)
  63. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  64. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  65. wait(0.1)
  66. pl.CFrame = location
  67.  
  68. end)
  69. Section:NewButton("Teleport in prison garden or something", "", function()
  70.     local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  71. local location = CFrame.new(795, 97, 2462)
  72. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  73. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  74. wait(0.1)
  75. pl.CFrame = location
  76.  
  77. end)
  78. Section:NewButton("Teleport in front of prison", "", function()
  79.     local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  80. local location = CFrame.new(480, 98, 2217)
  81. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  82. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  83. wait(0.1)
  84. pl.CFrame = location
  85.  
  86. end)
  87.  
  88.  
Add Comment
Please, Sign In to add comment