Advertisement
Thingz_RBLX

Prison Life GUI

Sep 26th, 2018
841
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.53 KB | None | 0 0
  1. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  2. Text = "Gui Made By Anwarun";
  3. Color = Color3.new(1, 0, 0);
  4. Font = Enum.Font.SciFi;
  5. FontSize = Enum.FontSize.Size24;
  6. })
  7. wait(1)
  8. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  9. Text = "Script Source : V3rmillion";
  10. Color = Color3.new(1, 1, 1);
  11. Font = Enum.Font.SciFi;
  12. FontSize = Enum.FontSize.Size24;
  13. })
  14. wait(1)
  15. game.StarterGui:SetCore("SendNotification", {
  16. Title = "Wait 3 Seconds";
  17. Text = "Tolong Tunggu 3 Detik";
  18. })
  19. wait(3)
  20. game.StarterGui:SetCore("SendNotification", {
  21. Title = "Anwarun Gui Loaded!";
  22. Text = "Gui Made By: Anwarun";
  23. })
  24.  
  25. -- Objects
  26.  
  27. local PrisonGui = Instance.new("ScreenGui")
  28. local Mframe = Instance.new("Frame")
  29. local Title = Instance.new("TextLabel")
  30. local God = Instance.new("TextButton")
  31. local Kill = Instance.new("TextButton")
  32. local KillA = Instance.new("TextButton")
  33. local Noclip = Instance.new("TextButton")
  34. local Wep = Instance.new("TextButton")
  35. local CArrest = Instance.new("TextButton")
  36. local Guard = Instance.new("TextButton")
  37. local Inmate = Instance.new("TextButton")
  38. local CTeleport = Instance.new("TextButton")
  39. local Aall = Instance.new("TextButton")
  40. local Made = Instance.new("TextLabel")
  41. local Tutup = Instance.new("TextButton")
  42. local GodTittle = Instance.new("TextLabel")
  43. local Nocliplabel = Instance.new("TextLabel")
  44. local Bframe = Instance.new("Frame")
  45. local Buka = Instance.new("TextButton")
  46.  
  47. -- Properties
  48.  
  49. PrisonGui.Name = "Prison Gui"
  50. PrisonGui.Parent = game.CoreGui
  51.  
  52. Mframe.Name = "Mframe"
  53. Mframe.Parent = PrisonGui
  54. Mframe.Active = true
  55. Mframe.BackgroundColor3 = Color3.new(0, 0, 0)
  56. Mframe.BackgroundTransparency = 0.20000000298023
  57. Mframe.Position = UDim2.new(0.194577366, 0, 0.0848484859, 0)
  58. Mframe.Size = UDim2.new(0, 415, 0, 368)
  59. Mframe.Visible = false
  60. Mframe.Draggable = true
  61.  
  62. Title.Name = "Title"
  63. Title.Parent = Mframe
  64. Title.BackgroundColor3 = Color3.new(0, 0, 0)
  65. Title.BorderSizePixel = 0
  66. Title.Size = UDim2.new(0, 409, 0, 30)
  67. Title.Font = Enum.Font.SciFi
  68. Title.Text = "Prison Life Gui"
  69. Title.TextColor3 = Color3.new(1, 1, 1)
  70. Title.TextSize = 25
  71.  
  72. God.Name = "God"
  73. God.Parent = Mframe
  74. God.BackgroundColor3 = Color3.new(1, 1, 1)
  75. God.Position = UDim2.new(0.022818841, 0, 0.123913027, 0)
  76. God.Size = UDim2.new(0, 194, 0, 44)
  77. God.Style = Enum.ButtonStyle.RobloxButtonDefault
  78. God.Font = Enum.Font.SciFi
  79. God.Text = "God Mode"
  80. God.TextColor3 = Color3.new(1, 1, 1)
  81. God.TextSize = 20
  82. God.TextStrokeColor3 = Color3.new(1, 0, 0)
  83. God.TextStrokeTransparency = 0.10000000149012
  84. God.MouseButton1Down:Connect(function()
  85. lplayer = game:GetService("Players").LocalPlayer
  86.  
  87. lplayer.Character.Humanoid.Name = 1
  88. local l = lplayer.Character["1"]:Clone()
  89. l.Parent = lplayer.Character
  90. l.Name = "Humanoid"
  91. wait(0.1)
  92. lplayer.Character["1"]:Destroy()
  93. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  94. lplayer.Character.Animate.Disabled = true
  95. wait(0.1)
  96. lplayer.Character.Animate.Disabled = false
  97. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  98. end)
  99.  
  100. Kill.Name = "Kill"
  101. Kill.Parent = Mframe
  102. Kill.BackgroundColor3 = Color3.new(1, 1, 1)
  103. Kill.Position = UDim2.new(0.518669903, 0, 0.123913035, 0)
  104. Kill.Size = UDim2.new(0, 194, 0, 44)
  105. Kill.Style = Enum.ButtonStyle.RobloxButtonDefault
  106. Kill.Font = Enum.Font.SciFi
  107. Kill.Text = "Kill All"
  108. Kill.TextColor3 = Color3.new(1, 1, 1)
  109. Kill.TextSize = 20
  110. Kill.TextStrokeColor3 = Color3.new(1, 0, 0)
  111. Kill.TextStrokeTransparency = 0.10000000149012
  112. Kill.MouseButton1Down:connect(function()
  113. local part = workspace.Prison_Fences.fence.damagePart
  114. local function tp(humanoidrootpart,cframe)
  115. for i=1,10 do
  116. wait(0.2)
  117. humanoidrootpart.CFrame = cframe
  118. end
  119. end
  120. for i,v in pairs(game.Players:GetPlayers()) do
  121. spawn(function()
  122. v.Character.Humanoid.Jump = true
  123. tp(v.Character.HumanoidRootPart,part.CFrame)
  124. end)
  125. end
  126. end)
  127.  
  128. KillA.Name = "KillA"
  129. KillA.Parent = Mframe
  130. KillA.BackgroundColor3 = Color3.new(1, 1, 1)
  131. KillA.Position = UDim2.new(0.022818841, 0, 0.266285449, 0)
  132. KillA.Size = UDim2.new(0, 194, 0, 44)
  133. KillA.Style = Enum.ButtonStyle.RobloxButtonDefault
  134. KillA.Font = Enum.Font.SciFi
  135. KillA.Text = "Kill Aura"
  136. KillA.TextColor3 = Color3.new(1, 1, 1)
  137. KillA.TextSize = 20
  138. KillA.TextStrokeColor3 = Color3.new(1, 0, 0)
  139. KillA.TextStrokeTransparency = 0.10000000149012
  140. KillA.MouseButton1Down:connect(function()
  141.  
  142. mainRemotes = game.ReplicatedStorage
  143. meleeRemote = mainRemotes['meleeEvent']
  144.  
  145. killAura = true
  146.  
  147. contextactionservice = game.ContextActionService
  148.  
  149. function toggleKillAura(actionName, inputState, inputObject)
  150. print('Doing the action : ' .. actionName)
  151. if inputState == Enum.UserInputState.Begin then
  152. if killAura == true then
  153. killAura = false
  154. else
  155. killAura = true
  156. end
  157. end
  158. end
  159.  
  160. contextactionservice:BindAction('ToggleKillAura', toggleKillAura, false, Enum.KeyCode.K)
  161.  
  162. while wait() do
  163. if killAura == true then
  164. for _, plr in pairs (game:GetService('Players'):GetChildren()) do
  165. if plr.Name ~= game.Players.LocalPlayer.Name then
  166. meleeRemote:FireServer(plr)
  167. end
  168. end
  169. end
  170. end
  171. end)
  172.  
  173. Noclip.Name = "Noclip"
  174. Noclip.Parent = Mframe
  175. Noclip.BackgroundColor3 = Color3.new(1, 1, 1)
  176. Noclip.Position = UDim2.new(0.518669903, 0, 0.266285449, 0)
  177. Noclip.Size = UDim2.new(0, 194, 0, 44)
  178. Noclip.Style = Enum.ButtonStyle.RobloxButtonDefault
  179. Noclip.Font = Enum.Font.SciFi
  180. Noclip.Text = "Noclip"
  181. Noclip.TextColor3 = Color3.new(1, 1, 1)
  182. Noclip.TextSize = 20
  183. Noclip.TextStrokeColor3 = Color3.new(1, 0, 0)
  184. Noclip.TextStrokeTransparency = 0.10000000149012
  185.  
  186. noclip = false
  187. game:GetService('RunService').Stepped:connect(function()
  188. if noclip then
  189. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  190. Noclip.TextColor3 = Color3.new(1, 1, 1)
  191. Noclip.TextSize = 20
  192. Noclip.TextStrokeColor3 = Color3.new(1, 0, 0)
  193. Noclip.TextStrokeTransparency = 0.10000000149012
  194. Noclip.Text = ""
  195. Nocliplabel.Text = "Noclip (Aktif)"
  196. end
  197. end)
  198. Noclip.MouseButton1Down:connect(function()
  199. noclip = not noclip
  200. Noclip.TextColor3 = Color3.new(1, 1, 1)
  201. Noclip.TextSize = 20
  202. Noclip.TextStrokeColor3 = Color3.new(1, 0, 0)
  203. Noclip.TextStrokeTransparency = 0.10000000149012
  204. Noclip.Text = ""
  205. Nocliplabel.Text = "Noclip (Tidak Aktif)"
  206. end)
  207.  
  208. Wep.Name = "Wep"
  209. Wep.Parent = Mframe
  210. Wep.BackgroundColor3 = Color3.new(1, 1, 1)
  211. Wep.Position = UDim2.new(0.0214232467, 0, 0.402143627, 0)
  212. Wep.Size = UDim2.new(0, 194, 0, 44)
  213. Wep.Style = Enum.ButtonStyle.RobloxButtonDefault
  214. Wep.Font = Enum.Font.SciFi
  215. Wep.Text = "Weapon"
  216. Wep.TextColor3 = Color3.new(1, 1, 1)
  217. Wep.TextSize = 20
  218. Wep.TextStrokeColor3 = Color3.new(1, 0, 0)
  219. Wep.TextStrokeTransparency = 0.10000000149012
  220. Wep.MouseButton1Down:connect(function()
  221.  
  222. local Weapon = {"AK-47"}
  223. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  224. if v.Name == Weapon[1] then
  225. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  226. end
  227. end
  228.  
  229. local Weapon = {"Remington 870"}
  230. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  231. if v.Name == Weapon[1] then
  232. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  233. end
  234. end
  235.  
  236. local Weapon = {"M9"}
  237. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  238. if v.Name == Weapon[1] then
  239. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  240. end
  241. end
  242. end)
  243.  
  244. CArrest.Name = "CArrest"
  245. CArrest.Parent = Mframe
  246. CArrest.BackgroundColor3 = Color3.new(1, 1, 1)
  247. CArrest.Position = UDim2.new(0.517246544, 0, 0.402143627, 0)
  248. CArrest.Size = UDim2.new(0, 194, 0, 44)
  249. CArrest.Style = Enum.ButtonStyle.RobloxButtonDefault
  250. CArrest.Font = Enum.Font.SciFi
  251. CArrest.Text = "Click Arrest"
  252. CArrest.TextColor3 = Color3.new(1, 1, 1)
  253. CArrest.TextSize = 20
  254. CArrest.TextStrokeColor3 = Color3.new(1, 0, 0)
  255. CArrest.TextStrokeTransparency = 0.10000000149012
  256. CArrest.MouseButton1Down:connect(function()
  257. local mouse = game.Players.LocalPlayer:GetMouse()
  258. local arrestEvent = game.Workspace.Remote.arrest
  259. mouse.Button1Down:connect(function()
  260. local obj = mouse.Target
  261. local response = arrestEvent:InvokeServer(obj)
  262. end)
  263. end)
  264.  
  265. Guard.Name = "Guard"
  266. Guard.Parent = Mframe
  267. Guard.BackgroundColor3 = Color3.new(1, 1, 1)
  268. Guard.Position = UDim2.new(0.022818841, 0, 0.538293183, 0)
  269. Guard.Size = UDim2.new(0, 194, 0, 44)
  270. Guard.Style = Enum.ButtonStyle.RobloxButtonDefault
  271. Guard.Font = Enum.Font.SciFi
  272. Guard.Text = "Guard Team"
  273. Guard.TextColor3 = Color3.new(1, 1, 1)
  274. Guard.TextSize = 20
  275. Guard.TextStrokeColor3 = Color3.new(1, 0, 0)
  276. Guard.TextStrokeTransparency = 0.10000000149012
  277. Guard.MouseButton1Down:connect(function()
  278. Workspace.Remote.TeamEvent:FireServer("Bright blue")
  279. end)
  280.  
  281. Inmate.Name = "Inmate"
  282. Inmate.Parent = Mframe
  283. Inmate.BackgroundColor3 = Color3.new(1, 1, 1)
  284. Inmate.Position = UDim2.new(0.517246544, 0, 0.538293183, 0)
  285. Inmate.Size = UDim2.new(0, 194, 0, 44)
  286. Inmate.Style = Enum.ButtonStyle.RobloxButtonDefault
  287. Inmate.Font = Enum.Font.SciFi
  288. Inmate.Text = "Inmate Team"
  289. Inmate.TextColor3 = Color3.new(1, 1, 1)
  290. Inmate.TextSize = 20
  291. Inmate.TextStrokeColor3 = Color3.new(1, 0, 0)
  292. Inmate.TextStrokeTransparency = 0.10000000149012
  293. Inmate.MouseButton1Down:connect(function()
  294. Workspace.Remote.TeamEvent:FireServer("Bright orange")
  295. end)
  296.  
  297. CTeleport.Name = "CTeleport"
  298. CTeleport.Parent = Mframe
  299. CTeleport.BackgroundColor3 = Color3.new(1, 1, 1)
  300. CTeleport.Position = UDim2.new(0.022818841, 0, 0.684570432, 0)
  301. CTeleport.Size = UDim2.new(0, 194, 0, 44)
  302. CTeleport.Style = Enum.ButtonStyle.RobloxButtonDefault
  303. CTeleport.Font = Enum.Font.SciFi
  304. CTeleport.Text = "Click Teleport"
  305. CTeleport.TextColor3 = Color3.new(1, 1, 1)
  306. CTeleport.TextSize = 20
  307. CTeleport.TextStrokeColor3 = Color3.new(1, 0, 0)
  308. CTeleport.TextStrokeTransparency = 0.10000000149012
  309. CTeleport.MouseButton1Down:connect(function()
  310.  
  311. mouse = game.Players.LocalPlayer:GetMouse()
  312. tool = Instance.new("Tool")
  313. tool.RequiresHandle = false
  314. tool.Name = "Tool Jalan Jalan"
  315. tool.Activated:connect(function()
  316. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  317. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  318. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  319. end)
  320. tool.Parent = game.Players.LocalPlayer.Backpack
  321. end)
  322.  
  323. Aall.Name = "Aall"
  324. Aall.Parent = Mframe
  325. Aall.BackgroundColor3 = Color3.new(1, 1, 1)
  326. Aall.Position = UDim2.new(0.519257426, 0, 0.684570432, 0)
  327. Aall.Size = UDim2.new(0, 194, 0, 44)
  328. Aall.Style = Enum.ButtonStyle.RobloxButtonDefault
  329. Aall.Font = Enum.Font.SciFi
  330. Aall.Text = "Arrest All"
  331. Aall.TextColor3 = Color3.new(1, 1, 1)
  332. Aall.TextSize = 20
  333. Aall.TextStrokeColor3 = Color3.new(1, 0, 0)
  334. Aall.TextStrokeTransparency = 0.10000000149012
  335. Aall.MouseButton1Down:connect(function()
  336. local Player = game.Players.LocalPlayer
  337. local cpos = Player.Character.HumanoidRootPart.CFrame
  338. for i,v in pairs(game.Teams.Criminals:GetPlayers()) do
  339. if v.Name ~= Player.Name then
  340. local i = 10
  341. repeat
  342. wait()
  343. i = i-1
  344. game.Workspace.Remote.arrest:InvokeServer(v.Character.HumanoidRootPart)
  345. Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  346. until i == 0
  347. end
  348. end
  349. end)
  350.  
  351. Made.Name = "Made"
  352. Made.Parent = Mframe
  353. Made.BackgroundColor3 = Color3.new(0, 0, 0)
  354. Made.BackgroundTransparency = 1
  355. Made.BorderSizePixel = 0
  356. Made.Position = UDim2.new(0.368674695, 0, 0.855729282, 0)
  357. Made.Size = UDim2.new(0, 102, 0, 30)
  358. Made.Font = Enum.Font.SciFi
  359. Made.Text = "Made By Anwarun"
  360. Made.TextColor3 = Color3.new(1, 1, 1)
  361. Made.TextSize = 25
  362.  
  363. Tutup.Name = "Tutup"
  364. Tutup.Parent = Mframe
  365. Tutup.BackgroundColor3 = Color3.new(1, 1, 1)
  366. Tutup.Position = UDim2.new(0.908433735, 0, 0, 0)
  367. Tutup.Size = UDim2.new(0, 38, 0, 30)
  368. Tutup.Style = Enum.ButtonStyle.RobloxButtonDefault
  369. Tutup.Font = Enum.Font.SciFi
  370. Tutup.Text = "X"
  371. Tutup.TextColor3 = Color3.new(1, 1, 1)
  372. Tutup.TextSize = 20
  373. Tutup.TextStrokeColor3 = Color3.new(1, 0, 0)
  374. Tutup.TextStrokeTransparency = 0.10000000149012
  375. Tutup.MouseButton1Down:connect(function()
  376. Mframe.Visible = false
  377. end)
  378.  
  379. GodTittle.Name = "GodTittle"
  380. GodTittle.Parent = Mframe
  381. GodTittle.BackgroundColor3 = Color3.new(1, 1, 1)
  382. GodTittle.BackgroundTransparency = 1
  383. GodTittle.Position = UDim2.new(0.0216867477, 0, 0.130434781, 0)
  384. GodTittle.Size = UDim2.new(0, 192, 0, 42)
  385. GodTittle.Font = Enum.Font.SciFi
  386. GodTittle.Text = ""
  387. GodTittle.TextColor3 = Color3.new(1, 1, 1)
  388. GodTittle.TextSize = 20
  389. GodTittle.TextStrokeColor3 = Color3.new(1, 0, 0)
  390. GodTittle.TextStrokeTransparency = 0
  391.  
  392. Nocliplabel.Name = "Nocliplabel"
  393. Nocliplabel.Parent = Mframe
  394. Nocliplabel.BackgroundColor3 = Color3.new(1, 1, 1)
  395. Nocliplabel.BackgroundTransparency = 1
  396. Nocliplabel.Position = UDim2.new(0.518072307, 0, 0.266304344, 0)
  397. Nocliplabel.Size = UDim2.new(0, 194, 0, 44)
  398. Nocliplabel.Font = Enum.Font.SciFi
  399. Nocliplabel.Text = ""
  400. Nocliplabel.TextColor3 = Color3.new(1, 1, 1)
  401. Nocliplabel.TextSize = 20
  402. Nocliplabel.TextStrokeColor3 = Color3.new(1, 0, 0)
  403. Nocliplabel.TextStrokeTransparency = 0
  404.  
  405. Bframe.Name = "Bframe"
  406. Bframe.Parent = PrisonGui
  407. Bframe.BackgroundColor3 = Color3.new(0, 0, 0)
  408. Bframe.BorderColor3 = Color3.new(1, 0, 0)
  409. Bframe.BorderSizePixel = 2
  410. Bframe.Position = UDim2.new(0, 0, 0.452525258, 0)
  411. Bframe.Size = UDim2.new(0, 160, 0, 51)
  412.  
  413. Buka.Name = "Buka"
  414. Buka.Parent = Bframe
  415. Buka.BackgroundColor3 = Color3.new(1, 1, 1)
  416. Buka.BackgroundTransparency = 1
  417. Buka.Position = UDim2.new(0, 0, 0.019607842, 0)
  418. Buka.Size = UDim2.new(0, 160, 0, 50)
  419. Buka.Font = Enum.Font.SciFi
  420. Buka.Text = "Buka / Open"
  421. Buka.TextColor3 = Color3.new(1, 1, 1)
  422. Buka.TextScaled = true
  423. Buka.TextSize = 20
  424. Buka.TextStrokeColor3 = Color3.new(1, 0, 0)
  425. Buka.TextStrokeTransparency = 0
  426. Buka.TextWrapped = true
  427. Buka.MouseButton1Down:connect(function()
  428. Bframe.Visible = false
  429. Mframe.Visible = true
  430. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement