Advertisement
vaux19

Prison Life Gui

Mar 20th, 2020
3,093
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.03 KB | None | 0 0
  1. -- Scripter By Vaux19
  2.  
  3. -- Gui to Lua
  4. -- Version: 3.2
  5.  
  6. -- Instances:
  7.  
  8. local ScreenGui = Instance.new("ScreenGui")
  9. local Hack = Instance.new("Frame")
  10. local TextLabel = Instance.new("TextLabel")
  11. local SpeedHack = Instance.new("TextButton")
  12. local InfJump = Instance.new("TextButton")
  13. local Btools = Instance.new("TextButton")
  14. local Guns = Instance.new("TextButton")
  15. local TpToPrisonBase = Instance.new("TextButton")
  16. local TpToPoliceBase = Instance.new("TextButton")
  17. local RemoveDoors = Instance.new("TextButton")
  18. local ChangeTeamNeutral = Instance.new("TextButton")
  19. local Esp = Instance.new("TextButton")
  20. local TrollFeBang = Instance.new("TextButton")
  21. local TextLabel_2 = Instance.new("TextLabel")
  22.  
  23. --Properties:
  24.  
  25. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  26. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  27.  
  28. Hack.Name = "Hack"
  29. Hack.Parent = ScreenGui
  30. Hack.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  31. Hack.BackgroundTransparency = 0.700
  32. Hack.Position = UDim2.new(0.0200607721, 0, 0.0678571463, 0)
  33. Hack.Size = UDim2.new(0, 331, 0, 472)
  34.  
  35. TextLabel.Parent = Hack
  36. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  37. TextLabel.BackgroundTransparency = 1.000
  38. TextLabel.Size = UDim2.new(0, 331, 0, 50)
  39. TextLabel.Font = Enum.Font.Cartoon
  40. TextLabel.Text = "Prison Life Gui!"
  41. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  42. TextLabel.TextSize = 36.000
  43. TextLabel.TextWrapped = true
  44.  
  45. SpeedHack.Name = "SpeedHack"
  46. SpeedHack.Parent = Hack
  47. SpeedHack.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  48. SpeedHack.BackgroundTransparency = 0.700
  49. SpeedHack.Position = UDim2.new(0.0483383685, 0, 0.104178518, 0)
  50. SpeedHack.Size = UDim2.new(0, 130, 0, 50)
  51. SpeedHack.Font = Enum.Font.Cartoon
  52. SpeedHack.Text = "Speed Hack"
  53. SpeedHack.TextColor3 = Color3.fromRGB(0, 0, 0)
  54. SpeedHack.TextSize = 24.000
  55. SpeedHack.TextWrapped = true
  56. SpeedHack.MouseButton1Down:connect(function()
  57. local speed = 90
  58. spawn(function()
  59. while wait() do
  60. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = speed
  61. end
  62. end)
  63. end)
  64.  
  65. InfJump.Name = "Inf Jump"
  66. InfJump.Parent = Hack
  67. InfJump.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  68. InfJump.BackgroundTransparency = 0.700
  69. InfJump.Position = UDim2.new(0.0483383685, 0, 0.260226995, 0)
  70. InfJump.Size = UDim2.new(0, 130, 0, 50)
  71. InfJump.Font = Enum.Font.Cartoon
  72. InfJump.Text = "Inf Jump"
  73. InfJump.TextColor3 = Color3.fromRGB(0, 0, 0)
  74. InfJump.TextSize = 24.000
  75. InfJump.TextWrapped = true
  76. InfJump.MouseButton1Down:connect(function()
  77. _G.infinjump = true
  78.  
  79. local Player = game:GetService("Players").LocalPlayer
  80. local Mouse = Player:GetMouse()
  81. Mouse.KeyDown:connect(function(k)
  82. if _G.infinjump then
  83. if k:byte() == 32 then
  84. Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
  85. Humanoid:ChangeState("Jumping")
  86. wait(0.1)
  87. Humanoid:ChangeState("Seated")
  88. end
  89. end
  90. end)
  91.  
  92. local Player = game:GetService("Players").LocalPlayer
  93. local Mouse = Player:GetMouse()
  94. Mouse.KeyDown:connect(function(k)
  95. k = k:lower()
  96. if k == "f" then
  97. if _G.infinjump == true then
  98. _G.infinjump = false
  99. else
  100. _G.infinjump = true
  101. end
  102. end
  103. end)
  104. end)
  105.  
  106. Btools.Name = "Btools"
  107. Btools.Parent = Hack
  108. Btools.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  109. Btools.BackgroundTransparency = 0.700
  110. Btools.Position = UDim2.new(0.519637465, 0, 0.104178548, 0)
  111. Btools.Size = UDim2.new(0, 130, 0, 50)
  112. Btools.Font = Enum.Font.Cartoon
  113. Btools.Text = "Btools"
  114. Btools.TextColor3 = Color3.fromRGB(0, 0, 0)
  115. Btools.TextSize = 24.000
  116. Btools.TextWrapped = true
  117. Btools.MouseButton1Down:connect(function()
  118. a = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  119. a.BinType = 2
  120. b = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  121. b.BinType = 3
  122. c = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  123. c.BinType = 4
  124. end)
  125. Guns.Name = "Guns"
  126. Guns.Parent = Hack
  127. Guns.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  128. Guns.BackgroundTransparency = 0.700
  129. Guns.Position = UDim2.new(0.519637465, 0, 0.260226995, 0)
  130. Guns.Size = UDim2.new(0, 130, 0, 50)
  131. Guns.Font = Enum.Font.Cartoon
  132. Guns.Text = "Guns"
  133. Guns.TextColor3 = Color3.fromRGB(0, 0, 0)
  134. Guns.TextSize = 24.000
  135. Guns.TextWrapped = true
  136. Guns.MouseButton1Down:connect(function()
  137. workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS:findFirstChild('M9', true).ITEMPICKUP)
  138. wait(0.1)
  139. workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS:findFirstChild('Remington 870', true).ITEMPICKUP)
  140. wait(0.1)
  141. workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS:findFirstChild('AK-47', true).ITEMPICKUP)
  142. wait(0.1)
  143. end)
  144.  
  145. TpToPrisonBase.Name = "Tp To Prison Base"
  146. TpToPrisonBase.Parent = Hack
  147. TpToPrisonBase.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  148. TpToPrisonBase.BackgroundTransparency = 0.700
  149. TpToPrisonBase.Position = UDim2.new(0.519637465, 0, 0.419024348, 0)
  150. TpToPrisonBase.Size = UDim2.new(0, 130, 0, 50)
  151. TpToPrisonBase.Font = Enum.Font.Cartoon
  152. TpToPrisonBase.Text = "Tp To Prison Base"
  153. TpToPrisonBase.TextColor3 = Color3.fromRGB(0, 0, 0)
  154. TpToPrisonBase.TextSize = 24.000
  155. TpToPrisonBase.TextWrapped = true
  156. TpToPrisonBase.MouseButton1Down:connect(function()
  157. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(909.029, 97.5886, 2459.18)
  158. local hint = Instance.new("Hint",game.Players.LocalPlayer.PlayerGui)
  159. wait(3)
  160. hint:Destroy()
  161. end)
  162. TpToPoliceBase.Name = "Tp To Police Base"
  163. TpToPoliceBase.Parent = Hack
  164. TpToPoliceBase.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  165. TpToPoliceBase.BackgroundTransparency = 0.700
  166. TpToPoliceBase.Position = UDim2.new(0.0483383685, 0, 0.420577139, 0)
  167. TpToPoliceBase.Size = UDim2.new(0, 130, 0, 50)
  168. TpToPoliceBase.Font = Enum.Font.Cartoon
  169. TpToPoliceBase.Text = "Tp To Police Base"
  170. TpToPoliceBase.TextColor3 = Color3.fromRGB(0, 0, 0)
  171. TpToPoliceBase.TextSize = 24.000
  172. TpToPoliceBase.TextWrapped = true
  173. TpToPoliceBase.MouseButton1Down:connect(function()
  174. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(814.921, 99.5346, 2254)
  175. local hint = Instance.new("Hint",game.Players.LocalPlayer.PlayerGui)
  176. wait(3)
  177. hint:Destroy()
  178. end)
  179. RemoveDoors.Name = "Remove Doors"
  180. RemoveDoors.Parent = Hack
  181. RemoveDoors.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  182. RemoveDoors.BackgroundTransparency = 0.700
  183. RemoveDoors.Position = UDim2.new(0.0483383685, 0, 0.572312415, 0)
  184. RemoveDoors.Size = UDim2.new(0, 130, 0, 50)
  185. RemoveDoors.Font = Enum.Font.Cartoon
  186. RemoveDoors.Text = "Remove Doors"
  187. RemoveDoors.TextColor3 = Color3.fromRGB(0, 0, 0)
  188. RemoveDoors.TextSize = 24.000
  189. RemoveDoors.TextWrapped = true
  190. RemoveDoors.MouseButton1Down:connect(function()
  191. game.Workspace.Doors:Destroy()
  192. end)
  193. ChangeTeamNeutral.Name = "Change Team Neutral"
  194. ChangeTeamNeutral.Parent = Hack
  195. ChangeTeamNeutral.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  196. ChangeTeamNeutral.BackgroundTransparency = 0.700
  197. ChangeTeamNeutral.Position = UDim2.new(0.519637465, 0, 0.570759594, 0)
  198. ChangeTeamNeutral.Size = UDim2.new(0, 130, 0, 50)
  199. ChangeTeamNeutral.Font = Enum.Font.Cartoon
  200. ChangeTeamNeutral.Text = "Change Team Neutral"
  201. ChangeTeamNeutral.TextColor3 = Color3.fromRGB(0, 0, 0)
  202. ChangeTeamNeutral.TextSize = 24.000
  203. ChangeTeamNeutral.TextWrapped = true
  204. ChangeTeamNeutral.MouseButton1Down:connect(function()
  205. workspace.Remote.TeamEvent:FireServer("Medium stone grey")
  206. end)
  207. Esp.Name = "Esp"
  208. Esp.Parent = Hack
  209. Esp.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  210. Esp.BackgroundTransparency = 0.700
  211. Esp.Position = UDim2.new(0.0483383685, 0, 0.714261532, 0)
  212. Esp.Size = UDim2.new(0, 130, 0, 50)
  213. Esp.Font = Enum.Font.Cartoon
  214. Esp.Text = "Esp"
  215. Esp.TextColor3 = Color3.fromRGB(0, 0, 0)
  216. Esp.TextSize = 31.000
  217. Esp.TextWrapped = true
  218. Esp.MouseButton1Down:connect(function()
  219.  
  220. while true do
  221. wait(0.3)
  222. for _, p in pairs(game:GetChildren()) do
  223. if p.ClassName == ("Players") then
  224. plr = p.LocalPlayer
  225. team = plr.TeamColor
  226. for _, v in pairs(p:GetChildren()) do
  227. if v.Name ~= plr.Name and v.TeamColor ~= team then
  228. for _, l in pairs(v.Character.Head:GetChildren()) do
  229. if l.Name == ("OverRemove") then
  230. l:Destroy()
  231. end
  232. end
  233. i = Instance.new("BillboardGui",v.Character.Head)
  234. i.Name = ("OverRemove")
  235. f = Instance.new("Frame",i)
  236. i.Active = true
  237. i.AlwaysOnTop = true
  238. i.Size = UDim2.new(1,0,1,0)
  239. i.ExtentsOffset = Vector3.new(0,3.5,0)
  240. f.Size = UDim2.new(1,0,1,0)
  241. f.BorderSizePixel = 0
  242. f.BackgroundColor3 = Color3.new(1,0,0)
  243. elseif v.TeamColor == team then
  244. for _, l in pairs(v.Character.Head:GetChildren()) do
  245. if l.Name == ("OverRemove") then
  246. l:Destroy()
  247. end
  248. end
  249. end
  250. end
  251. end
  252. end
  253. end
  254. end)
  255.  
  256. TrollFeBang.Name = "Troll Fe Bang"
  257. TrollFeBang.Parent = Hack
  258. TrollFeBang.BackgroundColor3 = Color3.fromRGB(255, 170, 255)
  259. TrollFeBang.BackgroundTransparency = 0.700
  260. TrollFeBang.Position = UDim2.new(0.519637465, 0, 0.712708712, 0)
  261. TrollFeBang.Size = UDim2.new(0, 130, 0, 50)
  262. TrollFeBang.Font = Enum.Font.Cartoon
  263. TrollFeBang.Text = "Troll Fe Bang"
  264. TrollFeBang.TextColor3 = Color3.fromRGB(0, 0, 0)
  265. TrollFeBang.TextSize = 24.000
  266. TrollFeBang.TextWrapped = true
  267. TrollFeBang.MouseButton1Down:connect(function()
  268. local Victim='Player name here'
  269. local A=Instance.new'Animation'
  270. A.AnimationId='rbxassetid://148840371'
  271. local P=game:GetService'Players'.LocalPlayer
  272. local C=P.Character or P.CharacterAdded:Wait()
  273. local H=C:WaitForChild'Humanoid':LoadAnimation(A)
  274. H:Play()
  275. H:AdjustSpeed(12)
  276. game:GetService'RunService'.Stepped:Connect(function()
  277. C:WaitForChild'HumanoidRootPart'.CFrame=CFrame.new(game:GetService'Players':FindFirstChild(Victim).Character:WaitForChild'HumanoidRootPart'.Position)
  278. end)
  279. end)
  280.  
  281. TextLabel_2.Parent = Hack
  282. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  283. TextLabel_2.BackgroundTransparency = 1.000
  284. TextLabel_2.Position = UDim2.new(0, 0, 0.870762706, 0)
  285. TextLabel_2.Size = UDim2.new(0, 331, 0, 50)
  286. TextLabel_2.Font = Enum.Font.SourceSans
  287. TextLabel_2.Text = "Credit By, XxProGamerXx"
  288. TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  289. TextLabel_2.TextScaled = true
  290. TextLabel_2.TextSize = 14.000
  291. TextLabel_2.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement