Budd0z

UnitedHub

Nov 17th, 2021 (edited)
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. if game.PlaceId == 155615604 then
  2. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  3. local Window = Library.CreateLib("PrisonLife -- UnitedHub", "Synapse")
  4.  
  5. --Main
  6. local Main = Window:NewTab("Main")
  7. local MainSection = Main:NewSection("Main")
  8. MainSection:NewDropdown("Give Gun", "Gives The Chosen Gun To LocalPlayer", {"M9", "Remington 870", "AK-47"}, function(v)
  9. local A_1 = game:GetService("Workspace")["Prison_ITEMS"].giver[v].ITEMPICKUP
  10. local Event = game:GetService("Workspace").Remote.ItemHandler
  11. Event:InvokeServer(A_1)
  12. end)
  13. MainSection:NewDropdown("Mod Gun", "Gives The Chosen Gun An OP Feature", {"M9", "Remington 870", "AK-47"}, function(v)
  14. local Module = nil
  15. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(v) then
  16. Module = require(game:GetService("Players").LocalPlayer.Backpack[v].GunStates)
  17. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild(v) then
  18. Module = require(game:GetService("Players").LocalPlayer.Character[v].GunStates)
  19. end
  20. if Module ~= nil then
  21. Module["MaxAmmo"] = math.huge
  22. Module["CurrentAmmo"] = math.huge
  23. Module["StoredAmmo"] = math.huge
  24. end
  25. end)
  26.  
  27. --Player
  28. local Player = Window:NewTab("Player")
  29. local PlayerSection = Player:NewSection("Player")
  30. PlayerSection:NewSlider("WalkSpeed", "Increase WalkSpeed", 250, 16, function(v)
  31. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v
  32. end)
  33. PlayerSection:NewSlider("JumpPower", "Increase JumpPower", 250, 50, function(v)
  34. game.Players.LocalPlayer.Character.Humanoid.JumpPower = v
  35. end)
  36.  
  37. --Teleport
  38. local Teleport = Window:NewTab("Teleport")
  39. local TeleportSection = Teleport:NewSection("Teleport")
  40. TeleportSection:NewButton("CellBlock", "TP To CellBlock", function(v)
  41. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(918.215, 99.99, 2439.11)
  42. end)
  43. TeleportSection:NewButton("PrisonYard", "TP To PrisonYard", function(v)
  44. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(773.641, 97.9999, 2468.76)
  45. end)
  46. TeleportSection:NewButton("CriminalBase", "TP To CriminalBase", function(v)
  47. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-893.17, 94.1271, 2114.98)
  48. end)
  49. end
Add Comment
Please, Sign In to add comment