Advertisement
RB_ScriptMaker

what im working on (and new gui)

Jan 25th, 2020
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 13.03 KB | None | 0 0
  1. --well i havent had any big posts recently for exploiting, and i usually come out with one a day.
  2. --i have multiple projects that i am doing.
  3. --since ive been inactive, ive decided to release my great prison life gui
  4. --no kill all or anything, cause thats kinda overboard.
  5. --hope you like the new style
  6. --here it is!
  7. --made by Zeonexist aka heyy #5714
  8.  
  9. local ScreenGui = Instance.new("ScreenGui")
  10. local openframe = Instance.new("Frame")
  11. local open = Instance.new("TextButton")
  12. local main = Instance.new("Frame")
  13. local title = Instance.new("TextLabel")
  14. local signurature = Instance.new("TextLabel")
  15. local sped = Instance.new("TextBox")
  16. local jump = Instance.new("TextBox")
  17. local applysped = Instance.new("TextButton")
  18. local fly = Instance.new("TextButton")
  19. local applyjump = Instance.new("TextButton")
  20. local noclip = Instance.new("TextButton")
  21. local walls = Instance.new("TextButton")
  22. local gunmod = Instance.new("TextButton")
  23. local neutral = Instance.new("TextButton")
  24. local crim = Instance.new("TextButton")
  25. local prisoner = Instance.new("TextButton")
  26. local btools = Instance.new("TextButton")
  27. local camp = Instance.new("TextButton")
  28. local teleportgui = Instance.new("TextButton")
  29. local panic = Instance.new("TextButton")
  30. local close = Instance.new("TextButton")
  31.  
  32. ScreenGui.Parent = game.CoreGui
  33.  
  34. openframe.Name = "openframe"
  35. openframe.Parent = ScreenGui
  36. openframe.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  37. openframe.BorderSizePixel = 0
  38. openframe.Position = UDim2.new(0.0134281218, 0, 0.295986593, 0)
  39. openframe.Size = UDim2.new(0, 100, 0, 100)
  40. openframe.Active = true
  41. openframe.Draggable = true
  42.  
  43. open.Name = "open"
  44. open.Parent = openframe
  45. open.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  46. open.BorderSizePixel = 0
  47. open.Size = UDim2.new(0, 100, 0, 100)
  48. open.Font = Enum.Font.GothamBold
  49. open.Text = "OPEN"
  50. open.TextColor3 = Color3.fromRGB(255, 255, 255)
  51. open.TextSize = 24.000
  52. open.MouseButton1Down:connect(function()
  53.     main.Visible = true  
  54.     openframe.Visible = false
  55.     open.Visible = false
  56. end)
  57.  
  58. main.Name = "main"
  59. main.Parent = ScreenGui
  60. main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  61. main.BorderSizePixel = 0
  62. main.Position = UDim2.new(0.507108986, 0, 0.187290996, 0)
  63. main.Size = UDim2.new(0, 356, 0, 230)
  64. main.Visible = false
  65. main.Active = true
  66. main.Draggable = true
  67.  
  68. title.Name = "title"
  69. title.Parent = main
  70. title.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  71. title.BorderSizePixel = 0
  72. title.Size = UDim2.new(0, 357, 0, 26)
  73. title.Font = Enum.Font.GothamBold
  74. title.Text = "Prison haxxx"
  75. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  76. title.TextSize = 22.000
  77.  
  78. signurature.Name = "signurature"
  79. signurature.Parent = main
  80. signurature.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  81. signurature.BorderSizePixel = 0
  82. signurature.Position = UDim2.new(-0.00280112051, 0, 0.886956513, 0)
  83. signurature.Size = UDim2.new(0, 357, 0, 26)
  84. signurature.Font = Enum.Font.GothamBold
  85. signurature.Text = "Made by Zeonexist"
  86. signurature.TextColor3 = Color3.fromRGB(255, 255, 255)
  87. signurature.TextSize = 22.000
  88.  
  89. sped.Name = "sped"
  90. sped.Parent = main
  91. sped.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  92. sped.Position = UDim2.new(0.0140056023, 0, 0.143478259, 0)
  93. sped.Size = UDim2.new(0, 81, 0, 25)
  94. sped.Font = Enum.Font.GothamBold
  95. sped.Text = "SPEED"
  96. sped.TextColor3 = Color3.fromRGB(255, 255, 255)
  97. sped.TextSize = 14.000
  98.  
  99. jump.Name = "jump"
  100. jump.Parent = main
  101. jump.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  102. jump.Position = UDim2.new(0.0140056023, 0, 0.278260946, 0)
  103. jump.Size = UDim2.new(0, 81, 0, 25)
  104. jump.Font = Enum.Font.GothamBold
  105. jump.Text = "JUMP"
  106. jump.TextColor3 = Color3.fromRGB(255, 255, 255)
  107. jump.TextSize = 14.000
  108.  
  109. applysped.Name = "applysped"
  110. applysped.Parent = main
  111. applysped.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  112. applysped.Position = UDim2.new(0.338935584, 0, 0.143478259, 0)
  113. applysped.Size = UDim2.new(0, 81, 0, 25)
  114. applysped.Font = Enum.Font.GothamBold
  115. applysped.Text = "APPLY"
  116. applysped.TextColor3 = Color3.fromRGB(255, 255, 255)
  117. applysped.TextSize = 14.000
  118. applysped.MouseButton1Down:connect(function()
  119.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = sped.Text
  120. end)
  121.  
  122. fly.Name = "fly"
  123. fly.Parent = main
  124. fly.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  125. fly.Position = UDim2.new(0.669467807, 0, 0.278260887, 0)
  126. fly.Size = UDim2.new(0, 81, 0, 25)
  127. fly.Font = Enum.Font.GothamBold
  128. fly.Text = "FLY"
  129. fly.TextColor3 = Color3.fromRGB(255, 255, 255)
  130. fly.TextSize = 14.000
  131. fly.MouseButton1Down:connect(function()
  132. loadstring(game:HttpGet("https://pastebin.com/raw/kFADux5P", true))()
  133. end)
  134.  
  135. applyjump.Name = "applyjump"
  136. applyjump.Parent = main
  137. applyjump.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  138. applyjump.Position = UDim2.new(0.338935584, 0, 0.278260887, 0)
  139. applyjump.Size = UDim2.new(0, 81, 0, 25)
  140. applyjump.Font = Enum.Font.GothamBold
  141. applyjump.Text = "APPLY"
  142. applyjump.TextColor3 = Color3.fromRGB(255, 255, 255)
  143. applyjump.TextSize = 14.000
  144. applyjump.MouseButton1Down:connect(function()
  145.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = jump.Text
  146. end)
  147.  
  148. noclip.Name = "noclip"
  149. noclip.Parent = main
  150. noclip.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  151. noclip.Position = UDim2.new(0.669467807, 0, 0.143478259, 0)
  152. noclip.Size = UDim2.new(0, 81, 0, 25)
  153. noclip.Font = Enum.Font.GothamBold
  154. noclip.Text = "NOCLIP"
  155. noclip.TextColor3 = Color3.fromRGB(255, 255, 255)
  156. noclip.TextSize = 14.000
  157. noclip.MouseButton1Down:connect(function()
  158. nam = game.Players.LocalPlayer.Name
  159.  
  160. game:GetService('RunService').Stepped:connect(function()
  161. for a, b in pairs(game.Workspace:GetChildren()) do
  162. if b.Name == nam then
  163. for i, v in pairs(game.Workspace[nam]:GetChildren()) do
  164. if v:IsA("BasePart") then
  165. v.CanCollide = false
  166.  
  167. end
  168. end
  169. end
  170. end
  171. end)
  172.  
  173. Workspace[nam].Head.Changed:connect(function()
  174. for a, b in pairs(game.Workspace:GetChildren()) do
  175. if b.Name == nam then
  176. for i, v in pairs(game.Workspace[nam]:GetChildren()) do
  177. if v:IsA("BasePart") then
  178. v.CanCollide = false
  179.  
  180. end
  181. end
  182. end
  183. end
  184. end)
  185. end)
  186.  
  187. walls.Name = "walls"
  188. walls.Parent = main
  189. walls.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  190. walls.Position = UDim2.new(0.338935584, 0, 0.556521714, 0)
  191. walls.Size = UDim2.new(0, 81, 0, 25)
  192. walls.Font = Enum.Font.GothamBold
  193. walls.Text = "DESTROY WALLS"
  194. walls.TextColor3 = Color3.fromRGB(255, 255, 255)
  195. walls.MouseButton1Down:connect(function()
  196. for i,v in pairs(game:GetService("Workspace")["Prison_Halls"]:GetChildren()) do
  197. if v.Name ~= ("floor") then
  198.     if v.Name ~= ("lights") then
  199.          v:Remove()
  200.       end
  201.    end
  202. end
  203. for i,v in pairs(game:GetService("Workspace")["Prison_Guard_Outpost"]:GetChildren()) do
  204.    if v.Name ~= ("floor") then
  205.       if v.Name ~= ("lights") then
  206.          v:Remove()
  207.       end
  208.    end
  209. end
  210. for i,v in pairs(game:GetService("Workspace")["Prison_Cafeteria"]:GetChildren()) do
  211.      if v.Name ~= ("floor") then
  212.         if v.Name ~= ("lights") then
  213.          v:Remove()
  214.       end
  215.    end
  216. end
  217. for i,v in pairs(game:GetService("Workspace")["Prison_Fences"]:GetChildren()) do
  218.     v:Remove()
  219. end
  220. for i,v in pairs(game:GetService("Workspace")["Prison_OuterWall"]:GetChildren()) do
  221.     v:Remove()
  222. end
  223. for i,v in pairs(game:GetService("Workspace")["Doors"]:GetChildren()) do
  224.     v:Remove()
  225. end
  226. for i,v in pairs(game:GetService("Workspace")["Prison_Administration"]:GetChildren()) do
  227.    if v.Name ~= ("light_floor1") then
  228.        if v.Name ~= ("light_floor2") then
  229.          v:Remove()
  230.       end
  231.    end
  232. end
  233. for i,v in pairs(game:GetService("Workspace")["Prison_Cellblock"]:GetChildren()) do
  234.    if v.Name ~= ("c_floor") then
  235.        if v.Name ~= ("a_lights") then
  236.            if v.Name ~= ("b_lights") then
  237.               if v.Name ~= ("c_lights") then
  238.                 v:Remove()
  239.             end
  240.           end
  241.        end
  242.    end
  243. end
  244. end)
  245.  
  246. gunmod.Name = "gunmod"
  247. gunmod.Parent = main
  248. gunmod.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  249. gunmod.Position = UDim2.new(0.0140056014, 0, 0.556521714, 0)
  250. gunmod.Size = UDim2.new(0, 81, 0, 25)
  251. gunmod.Font = Enum.Font.GothamBold
  252. gunmod.Text = "GUNMOD"
  253. gunmod.TextColor3 = Color3.fromRGB(255, 255, 255)
  254. gunmod.TextSize = 14.000
  255. gunmod.MouseButton1Down:connect(function()
  256.     workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS:findFirstChild('M9', true).ITEMPICKUP)
  257. wait(0.1)
  258. workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS:findFirstChild('Remington 870', true).ITEMPICKUP)
  259. wait(0.1)
  260. workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS:findFirstChild('AK-47', true).ITEMPICKUP)
  261. for i, v in next, debug.getregistry() do
  262.     if type(v) == "table" then
  263.         if v.Bullets then
  264.             v.AutoFire = true
  265.             v.FireRate = 0
  266.             v.Bullets = 20
  267.             v.Range = math.huge
  268.             v.MaxAmmo = math.huge
  269.             v.CurrentAmmo = math.huge
  270.             v.StoredAmmo = math.huge
  271.         end
  272.     end
  273. end
  274. end)
  275.  
  276. neutral.Name = "neutral"
  277. neutral.Parent = main
  278. neutral.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  279. neutral.Position = UDim2.new(0.338935584, 0, 0.413043499, 0)
  280. neutral.Size = UDim2.new(0, 81, 0, 25)
  281. neutral.Font = Enum.Font.GothamBold
  282. neutral.Text = "TEAM NEUTRAL"
  283. neutral.TextColor3 = Color3.fromRGB(255, 255, 255)
  284. neutral.TextSize = 10.000
  285. neutral.MouseButton1Down:connect(function()
  286.     Workspace.Remote.TeamEvent:FireServer("Medium stone grey")
  287. end)
  288.  
  289. crim.Name = "crim"
  290. crim.Parent = main
  291. crim.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  292. crim.Position = UDim2.new(0.0140056014, 0, 0.413043499, 0)
  293. crim.Size = UDim2.new(0, 81, 0, 25)
  294. crim.Font = Enum.Font.GothamBold
  295. crim.Text = "TEAM GUARD"
  296. crim.TextColor3 = Color3.fromRGB(255, 255, 255)
  297. crim.TextSize = 10.000
  298. crim.MouseButton1Down:connect(function()
  299.      workspace.Remote.TeamEvent:FireServer("Bright blue")
  300. end)
  301.  
  302. prisoner.Name = "prisoner"
  303. prisoner.Parent = main
  304. prisoner.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  305. prisoner.Position = UDim2.new(0.669467807, 0, 0.413043499, 0)
  306. prisoner.Size = UDim2.new(0, 81, 0, 25)
  307. prisoner.Font = Enum.Font.GothamBold
  308. prisoner.Text = "TEAM PRISONER"
  309. prisoner.TextColor3 = Color3.fromRGB(255, 255, 255)
  310. prisoner.TextSize = 10.000
  311. prisoner.MouseButton1Down:connect(function()
  312.     Workspace.Remote.TeamEvent:FireServer("Bright orange")
  313. end)
  314.  
  315. btools.Name = "btools"
  316. btools.Parent = main
  317. btools.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  318. btools.Position = UDim2.new(0.669467807, 0, 0.556521714, 0)
  319. btools.Size = UDim2.new(0, 81, 0, 25)
  320. btools.Font = Enum.Font.GothamBold
  321. btools.Text = "BTOOLS"
  322. btools.TextColor3 = Color3.fromRGB(255, 255, 255)
  323. btools.TextSize = 14.000
  324. btools.MouseButton1Down:connect(function()
  325. a = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  326. a.BinType = 2
  327. b = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  328. b.BinType = 3
  329. c = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  330. c.BinType = 4
  331. end)
  332.  
  333. camp.Name = "camp"
  334. camp.Parent = main
  335. camp.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  336. camp.Position = UDim2.new(0.669467807, 0, 0.691304326, 0)
  337. camp.Size = UDim2.new(0, 81, 0, 25)
  338. camp.Font = Enum.Font.GothamBold
  339. camp.Text = "POLICE CAMPING"
  340. camp.TextColor3 = Color3.fromRGB(255, 255, 255)
  341. camp.TextSize = 9.000
  342. camp.MouseButton1Down:connect(function()
  343.     game.Workspace.Prison_Guard_Outpost:Remove()
  344.     wait(0.1)
  345.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new( 865.115112, 132.333115, 2289.6792)
  346.     game.Players.LocalPlayer.Character["Right Leg"].Anchored = true
  347.     game.Players.LocalPlayer.Character["Left Leg"].Anchored = true
  348. end)
  349.  
  350. teleportgui.Name = "teleportgui"
  351. teleportgui.Parent = main
  352. teleportgui.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  353. teleportgui.Position = UDim2.new(0.338007122, 0, 0.691304326, 0)
  354. teleportgui.Size = UDim2.new(0, 81, 0, 25)
  355. teleportgui.Font = Enum.Font.GothamBold
  356. teleportgui.Text = "TELEPORTS"
  357. teleportgui.TextColor3 = Color3.fromRGB(255, 255, 255)
  358. teleportgui.TextSize = 12.000
  359. teleportgui.MouseButton1Down:connect(function()
  360. loadstring(game:HttpGet("https://pastebin.com/raw/WjnYRiL9", true))()
  361. end)
  362.  
  363. panic.Name = "panic"
  364. panic.Parent = main
  365. panic.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  366. panic.Position = UDim2.new(0.0121644139, 0, 0.691304326, 0)
  367. panic.Size = UDim2.new(0, 81, 0, 25)
  368. panic.Font = Enum.Font.GothamBold
  369. panic.Text = "PANIC!"
  370. panic.TextColor3 = Color3.fromRGB(255, 255, 255)
  371. panic.TextSize = 14.000
  372. panic.MouseButton1Down:connect(function()
  373. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new( 878.995361, 30.7866821, 2345.72559)
  374. wait(1)
  375.         game:GetService("StarterGui"):SetCore("SendNotification", {
  376. Title = "CRISIS AVERTED";
  377. Text = "";
  378. })
  379. end)
  380.  
  381. close.Name = "close"
  382. close.Parent = main
  383. close.BackgroundColor3 = Color3.fromRGB(39, 0, 0)
  384. close.Position = UDim2.new(0.925085843, 0, 0.160869628, 0)
  385. close.Size = UDim2.new(0, 20, 0, 140)
  386. close.Font = Enum.Font.GothamBold
  387. close.Text = "X"
  388. close.TextColor3 = Color3.fromRGB(255, 255, 255)
  389. close.TextSize = 14.000
  390. close.MouseButton1Down:connect(function()
  391.     main.Visible = false
  392.     openframe.Visible = true
  393.     open.Visible = true
  394. end)
  395. game:GetService("StarterGui"):SetCore("SendNotification", {
  396. Title = "Welcome to Prison Hax";
  397. Text = "Yo this gui is cool for low power exploiting, no kill all or anything. Just laid back stuff.";
  398. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement