Advertisement
lukeliam2012

yessir

Jun 2nd, 2021
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 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", "Sentinel")
  3. local plr = game.Players.LocalPlayer
  4. local char = plr.Character
  5.  
  6. -- Main
  7.  
  8. local Main = Window:NewTab("Main")
  9. local MainSection = Main:NewSection("Main")
  10. MainSection:NewDropdown("Gives a Gun/Guns", "Gives you Gun/Guns", {"M9", "Remington 870", "AK-47"}, function(v)
  11. local A_1 = game:GetService("Workspace")["Prison_ITEMS"].giver[v].ITEMPICKUP
  12. local Event = game:GetService("Workspace").Remote.ItemHandler
  13. Event:InvokeServer(A_1)
  14. end)
  15. MainSection:NewDropdown("Mod Gun", "Makes gun op", {"M9", "Remington 870", "AK-47"}, function(v)
  16. local module = nil
  17. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild(v) then
  18. module = require(game:GetService("Players").LocalPlayer.Backpack[v].GunStates)
  19. elseif game:GetService("Players").LocalPlayer.Character:FindFirstChild(v) then
  20. module = require(game:GetService("Players").LocalPlayer.Character[v].GunStates)
  21. end
  22. if module ~= nil then
  23. module["MaxAmmo"] = math.huge
  24. module["CurrentAmmo"] = math.huge
  25. module["StoredAmmo"] = math.huge
  26. module["FireRate"] = 0.000001
  27. module["Spread"] = 0
  28. module["Range"] = math.huge
  29. module["Bullets"] = 10
  30. module["ReloadTime"] = 0.000001
  31. module["AutoFire"] = true
  32. end
  33. end)
  34.  
  35.  
  36. -- LocalPlayer
  37. local LocalPlayer = Window:NewTab("LocalPlayer")
  38. local LocalSection = LocalPlayer:NewSection("LocalPlayer")
  39. LocalSection:NewSlider("WalkSpeed", "Changes WalkSpeed", 250, 16, function(v) -- 500 (MaxValue) | 0 (MinValue)
  40. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v
  41. end)
  42. LocalSection:NewSlider("JumpPower", "Changes JumpPower", 250, 50, function(v) -- 500 (MaxValue) | 0 (MinValue)
  43. game.Players.LocalPlayer.Character.Humanoid.JumpPower = v
  44. end)
  45.  
  46. -- Teleport
  47. local Teleport = Window:NewTab("Teleport")
  48. local TeleportSection = Teleport:NewSection("Teleport")
  49. TeleportSection:NewButton("Teleport To WareHouse", "Teleports to WareHouse", function()
  50. char.HumanoidRootPart.CFrame = CFrame.new(-884.21344, 112.121124, 2056.89917, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  51. end)
  52. TeleportSection:NewButton("Teleport To Prison", "Teleports to Prison", function()
  53. char.HumanoidRootPart.CFrame = CFrame.new(805.599792, 96.3000031, 2394.69849, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  54. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement