urdadgeiaf

Prison Life gui (Open Source)

Aug 11th, 2019
371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/7Z6TzFnv", true))()
  2.  
  3. local RoCitizen = library:CreateWindow({
  4. text = "RoCitizen"
  5. })
  6.  
  7.  
  8. local Speed = library:CreateWindow({
  9. text = "Speed"
  10. })
  11.  
  12. local Teleports = library:CreateWindow({
  13. text = "Teleports"
  14. })
  15.  
  16. local Btools = library:CreateWindow({
  17. text = "Btools"
  18. })
  19.  
  20.  
  21.  
  22. local credits = library:CreateWindow({text='Credits'})
  23. credits:AddLabel("Credits:\nSkiddieWilly#0846: Dev\nwally: UI\n")
  24.  
  25.  
  26. RoCitizen:AddButton("GunMod (AK-47)",function()
  27. mod = require(game.Players.LocalPlayer.Backpack["AK-47"].GunStates)
  28.  
  29. mod["Firerate"]=-99
  30. mod["CurrentAmmo"]=math.huge
  31. mod["Spread"]=0
  32. mod["Damage"]=9999999999
  33. mod["MaxAmmo"]=math.huge
  34. end)
  35.  
  36. RoCitizen:AddButton("GunMod(M9)",function()
  37. mod = require(game.Players.LocalPlayer.Backpack["M9"].GunStates)
  38.  
  39. mod["Firerate"]=-99
  40. mod["CurrentAmmo"]=math.huge
  41. mod["Spread"]=0
  42. mod["Damage"]=9999999999
  43. mod["AutoFire"]=true
  44. mod["MaxAmmo"]=math.huge
  45. end)
  46.  
  47. RoCitizen:AddButton("GunMod(Remington 870)",function()
  48. mod = require(game.Players.LocalPlayer.Backpack["Remington 870"].GunStates)
  49.  
  50. mod["Damage"]=999
  51. mod["MaxAmmo"]=math.huge
  52. mod["StoredAmmo"]=math.huge
  53. mod["FireRate"]=0
  54. mod["AmmoPerClip"]=math.huge
  55. mod["Range"]=5000
  56. mod["ReloadTime"]=0
  57. mod["Bullets"]=10
  58. mod["AutoFire"]=true
  59. end)
  60.  
  61. RoCitizen:AddButton("GiveGuns",function()
  62. local weapons = {"Remington 870", "M9", "AK-47", "M4A1", "Riot Shield"}
  63. for i, v in pairs(game.Workspace["Prison_ITEMS"].giver:GetChildren()) do
  64. for j, k in pairs(weapons) do
  65. if v.Name == k then
  66. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  67. end
  68. end
  69. end
  70. end)
  71.  
  72. Speed:AddBox("WalkSpeed", function(object, focus)
  73. if focus then
  74. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = tonumber(object.Text) or 16
  75. end
  76. end)
  77.  
  78.  
  79. Teleports:AddButton("Police Guns", function()
  80. local Players = game:GetService('Players').LocalPlayer
  81. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(823.351257, 99.9900055, 2254.53394))
  82. end)
  83.  
  84.  
  85. Teleports:AddButton("Police Garage", function()
  86. local Players = game:GetService('Players').LocalPlayer
  87. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(618.037659, 98.2000275, 2497.46289))
  88. end)
  89.  
  90. Teleports:AddButton("City", function()
  91. local Players = game:GetService('Players').LocalPlayer
  92. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-529.112183, 54.5750389, 1780.46326))
  93. end)
  94.  
  95. Teleports:AddButton("CrimBase",function()
  96. local Players = game:GetService('Players').LocalPlayer
  97. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-943.077332, 94.1287842, 2057.36841))
  98. end)
  99.  
  100. Teleports:AddButton("CrimCar",function()
  101. local Players = game:GetService('Players').LocalPlayer
  102. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-910.733093, 95.1273117, 2138.47363))
  103. end)
  104.  
  105. Btools:AddButton("Btools",function()
  106. local tool1 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  107. local tool2 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  108. local tool3 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  109. local tool4 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  110. local tool5 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  111. tool1.BinType = "Clone"
  112. tool2.BinType = "GameTool"
  113. tool3.BinType = "Hammer"
  114. tool4.BinType = "Script"
  115. tool5.BinType = "Grab"
  116. end)
  117.  
  118.  
  119. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  120.  
  121. counter = 0
  122.  
  123. while wait(0.1)do
  124. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  125.  
  126. counter = counter + 0.01
  127. end
  128.  
  129. -- Rainbow Gui
Advertisement
Add Comment
Please, Sign In to add comment