Advertisement
Guest User

prison life admin

a guest
Feb 3rd, 2019
755
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 58.99 KB | None | 0 0
  1. --Thanks to the creaters of viianity for the command functions and their GUI
  2.  
  3. --Thanks to the creaters of reviz for the chat check functions and the structure idea
  4.  
  5. --Thanks to ImFrostic for his GUI
  6.  
  7. --Put together by k00lad3
  8.  
  9.  
  10. prefix = ":"
  11. wait(0.3)
  12. Commands = {
  13. '[1] kill all
  14. '[2] arrest all
  15. '[3] kill aura
  16. '[4] click arrest
  17. '[5] weapons
  18. '[6] GUI
  19. '[7] Viianity
  20.  
  21. --kill all
  22. --kill all
  23. --kill all
  24. --kill all
  25. --kill all
  26. --kill all
  27. if string.sub(msg, 1, 10) == (prefix.."kill all" then
  28. wait(0.1)
  29. local Player = game.Players.LocalPlayer
  30. local prevCFrame = Player.Character.HumanoidRootPart.CFrame
  31. for i,v in pairs(game.Players:GetChildren()) do
  32. if v.Name ~= game.Players.LocalPlayer.Name then
  33. if not v.Character:FindFirstChild("ForceField") then
  34. local playerName = v.Name
  35. local PlayerToKill = game.Players:FindFirstChild(playerName)
  36.  
  37. repeat
  38. if Player.Character.Humanoid.Sit == true then
  39. Player.Character.Humanoid.Sit = false
  40. end
  41. Player.Character.HumanoidRootPart.CFrame = PlayerToKill.Character.HumanoidRootPart.CFrame
  42. for h = 1,10 do
  43. game.ReplicatedStorage.meleeEvent:FireServer(PlayerToKill)
  44. end
  45. game:GetService("RunService").RenderStepped:wait()
  46. until PlayerToKill.Character.Humanoid.Health == 0 or v == nil
  47.  
  48. Player.Character.HumanoidRootPart.CFrame = prevCFrame
  49. end
  50. end
  51. end
  52. end)
  53. --kill all end
  54. --kill all end
  55. --kill all end
  56. --kill all end
  57. --kill all end
  58. --kill all end
  59.  
  60.  
  61.  
  62.  
  63.  
  64. --arrest all
  65. --arrest all
  66. --arrest all
  67. --arrest all
  68. --arrest all
  69. --arrest all
  70. if string.sub(msg, 1, 10) == (prefix.."arrest all" then
  71. wait(0.1)
  72. local Player = game.Players.LocalPlayer
  73. local cpos = Player.Character.HumanoidRootPart.CFrame
  74. for i,v in pairs(game.Teams.Criminals:GetPlayers()) do
  75. if v.Name ~= Player.Name then
  76. local i = 10
  77. repeat
  78. wait()
  79. i = i-1
  80. game.Workspace.Remote.arrest:InvokeServer(v.Character.HumanoidRootPart)
  81. Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  82. until i == 0
  83. end
  84. end
  85. end)
  86. --arrest all end
  87. --arrest all end
  88. --arrest all end
  89. --arrest all end
  90. --arrest all end
  91. --arrest all end
  92.  
  93.  
  94.  
  95.  
  96.  
  97. --kill aura
  98. --kill aura
  99. --kill aura
  100. --kill aura
  101. --kill aura
  102. --kill aura
  103. if string.sub(msg, 1, 10) == (prefix.."arrest all" then
  104. while wait(0.1) do
  105. for i, plr in pairs(game.Players:GetChildren()) do
  106. if plr.Name ~= game.Players.LocalPlayer.Name then
  107. for i = 1, 10 do
  108. game.ReplicatedStorage.meleeEvent:FireServer(plr)
  109. end
  110. end
  111. end
  112. end
  113. --kill aura end
  114. --kill aura end
  115. --kill aura end
  116. --kill aura end
  117. --kill aura end
  118. --kill aura end
  119.  
  120.  
  121.  
  122.  
  123.  
  124. --click arrest
  125. --click arrest
  126. --click arrest
  127. --click arrest
  128. --click arrest
  129. --click arrest
  130. if string.sub(msg, 1, 10) == (prefix.."arrest all" then
  131. local mouse = game.Players.LocalPlayer:GetMouse()
  132. local arrestEvent = game.Workspace.Remote.arrest
  133. mouse.Button1Down:connect(function()
  134. local obj = mouse.Target
  135. local response = arrestEvent:InvokeServer(obj)
  136. end)
  137. end)
  138. --click arrest end
  139. --click arrest end
  140. --click arrest end
  141. --click arrest end
  142. --click arrest end
  143. --click arrest end
  144.  
  145.  
  146.  
  147.  
  148.  
  149. --weapons
  150. --weapons
  151. --weapons
  152. --weapons
  153. --weapons
  154. --weapons
  155. if string.sub(msg, 1, 10) == (prefix.."weapons" then
  156. wait(0.1)
  157. local Weapon = {"AK-47"}
  158. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  159. if v.Name == Weapon[1] then
  160. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  161. end
  162. end
  163.  
  164. local Weapon = {"Remington 870"}
  165. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  166. if v.Name == Weapon[1] then
  167. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  168. end
  169. end
  170.  
  171. local Weapon = {"M9"}
  172. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  173. if v.Name == Weapon[1] then
  174. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  175. end
  176. end
  177. end)
  178.  
  179. --weapons end
  180. --weapons end
  181. --weapons end
  182. --weapons end
  183. --weapons end
  184. --weapons end
  185.  
  186.  
  187.  
  188.  
  189.  
  190. --GUI
  191. --GUI
  192. --GUI
  193. --GUI
  194. --GUI
  195. --GUI
  196. if string.sub(msg, 1, 10) == (prefix.."GUI" then
  197. -- Farewell infortality
  198. -- Revamp by ImFrostic, Version 2.81
  199.  
  200. -- Objects
  201.  
  202. local ScreenGui = Instance.new("ScreenGui")
  203. local page1gui = Instance.new("Frame")
  204. local trash5 = Instance.new("Frame")
  205. local logo1 = Instance.new("ImageLabel")
  206. local trash6 = Instance.new("TextButton")
  207. local close1 = Instance.new("TextButton")
  208. local page11 = Instance.new("TextButton")
  209. local page22 = Instance.new("TextButton")
  210. local m9 = Instance.new("TextButton")
  211. local ak = Instance.new("TextButton")
  212. local shotgun = Instance.new("TextButton")
  213. local m4a1 = Instance.new("TextButton")
  214. local taser = Instance.new("TextButton")
  215. local allguns = Instance.new("TextButton")
  216. local admin = Instance.new("TextButton")
  217. local btools = Instance.new("TextButton")
  218. local page2gui = Instance.new("Frame")
  219. local trash2 = Instance.new("Frame")
  220. local logo = Instance.new("ImageLabel")
  221. local trash3 = Instance.new("TextButton")
  222. local close = Instance.new("TextButton")
  223. local page1 = Instance.new("TextButton")
  224. local page2 = Instance.new("TextButton")
  225. local police = Instance.new("TextButton")
  226. local criminal = Instance.new("TextButton")
  227. local prisoner = Instance.new("TextButton")
  228. local allmelee = Instance.new("TextButton")
  229. local killall = Instance.new("TextButton")
  230. local opengui = Instance.new("Frame")
  231. local open = Instance.new("TextButton")
  232. local logingui = Instance.new("Frame")
  233. local trash1 = Instance.new("TextButton")
  234. local login = Instance.new("TextButton")
  235. local trash = Instance.new("TextButton")
  236.  
  237. -- Properties
  238.  
  239. ScreenGui.Parent = game.CoreGui
  240.  
  241. page1gui.Name = "page1gui"
  242. page1gui.Parent = ScreenGui
  243. page1gui.BackgroundColor3 = Color3.new(1, 1, 1)
  244. page1gui.Position = UDim2.new(0.227522939, 0, 0.205273092, 0)
  245. page1gui.Size = UDim2.new(0, 423, 0, 256)
  246. page1gui.Visible = false
  247. page1gui.Active = true
  248. page1gui.Draggable = true
  249.  
  250. trash5.Name = "trash5"
  251. trash5.Parent = page1gui
  252. trash5.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  253. trash5.Size = UDim2.new(0, 423, 0, 65)
  254.  
  255. logo1.Name = "logo1"
  256. logo1.Parent = page1gui
  257. logo1.BackgroundColor3 = Color3.new(0.47451, 0.47451, 0.47451)
  258. logo1.Size = UDim2.new(0, 73, 0, 65)
  259. logo1.Image = "rbxassetid://112536744"
  260.  
  261. trash6.Name = "trash6"
  262. trash6.Parent = page1gui
  263. trash6.BackgroundColor3 = Color3.new(1, 1, 1)
  264. trash6.BackgroundTransparency = 1
  265. trash6.Position = UDim2.new(0.241134748, 0, 0.02734375, 0)
  266. trash6.Size = UDim2.new(0, 299, 0, 50)
  267. trash6.Font = Enum.Font.SourceSans
  268. trash6.Text = "Prison Smasher V3"
  269. trash6.TextColor3 = Color3.new(0, 0, 0)
  270. trash6.TextScaled = true
  271. trash6.TextSize = 14
  272. trash6.TextWrapped = true
  273.  
  274. close1.Name = "close1"
  275. close1.Parent = page1gui
  276. close1.BackgroundColor3 = Color3.new(1, 0, 0)
  277. close1.Position = UDim2.new(0.914893627, 0, 0.27734375, 0)
  278. close1.Size = UDim2.new(0, 36, 0, 24)
  279. close1.Font = Enum.Font.SourceSans
  280. close1.Text = "X"
  281. close1.TextColor3 = Color3.new(0, 0, 0)
  282. close1.TextSize = 14
  283. close1.MouseButton1Down:connect(function()
  284. page1gui.Visible = false
  285. opengui.Visible = true
  286. end)
  287.  
  288. page11.Name = "page11"
  289. page11.Parent = page1gui
  290. page11.BackgroundColor3 = Color3.new(1, 0, 0)
  291. page11.Position = UDim2.new(0.914893627, 0, 0.7109375, 0)
  292. page11.Size = UDim2.new(0, 36, 0, 24)
  293. page11.Font = Enum.Font.SourceSans
  294. page11.Text = "1"
  295. page11.TextColor3 = Color3.new(0, 0, 0)
  296. page11.TextSize = 14
  297.  
  298. page22.Name = "page22"
  299. page22.Parent = page1gui
  300. page22.BackgroundColor3 = Color3.new(1, 0, 0)
  301. page22.Position = UDim2.new(0.914893627, 0, 0.859375, 0)
  302. page22.Size = UDim2.new(0, 36, 0, 24)
  303. page22.Font = Enum.Font.SourceSans
  304. page22.Text = "2"
  305. page22.TextColor3 = Color3.new(0, 0, 0)
  306. page22.TextSize = 14
  307.  
  308. m9.Name = "m9"
  309. m9.Parent = page1gui
  310. m9.BackgroundColor3 = Color3.new(0.388235, 0.388235, 0.388235)
  311. m9.Position = UDim2.new(0.0425531901, 0, 0.30859375, 0)
  312. m9.Size = UDim2.new(0, 101, 0, 24)
  313. m9.Font = Enum.Font.SourceSans
  314. m9.Text = "Fast M9"
  315. m9.TextColor3 = Color3.new(0, 0, 0)
  316. m9.TextSize = 14
  317. m9.MouseButton1Down:connect(function()
  318. local player = game:GetService("Players").LocalPlayer
  319. local gun = player.Backpack:FindFirstChild("M9")
  320. local sM = require(gun:FindFirstChild("GunStates"))
  321. sM["Damage"] = 999
  322. sM["MaxAmmo"] = 9999991
  323. sM["StoredAmmo"] = 9999991
  324. sM["FireRate"] = 0.05
  325. sM["AmmoPerClip"] = 9999991
  326. sM["Range"] = 5000
  327. sM["ReloadTime"] = 0.05
  328. sM["Bullets"] = 10
  329. sM["AutoFire"] = true
  330. end)
  331.  
  332. ak.Name = "ak"
  333. ak.Parent = page1gui
  334. ak.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  335. ak.Position = UDim2.new(0.0425531901, 0, 0.453125, 0)
  336. ak.Size = UDim2.new(0, 222, 0, 24)
  337. ak.Font = Enum.Font.SourceSans
  338. ak.Text = "Fast AK-47"
  339. ak.TextColor3 = Color3.new(0, 0, 0)
  340. ak.TextSize = 14
  341. ak.MouseButton1Down:connect(function()
  342. local player = game:GetService("Players").LocalPlayer
  343. local gun = player.Backpack:FindFirstChild("AK-47")
  344. local sM = require(gun:FindFirstChild("GunStates"))
  345. sM["Damage"] = 999
  346. sM["MaxAmmo"] = 9999991
  347. sM["StoredAmmo"] = 9999991
  348. sM["FireRate"] = 0.05
  349. sM["AmmoPerClip"] = 9999991
  350. sM["Range"] = 5000
  351. sM["ReloadTime"] = 0.05
  352. sM["Bullets"] = 10
  353. sM["AutoFire"] = true
  354. end)
  355.  
  356. shotgun.Name = "shotgun"
  357. shotgun.Parent = page1gui
  358. shotgun.BackgroundColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  359. shotgun.Position = UDim2.new(0.0425531901, 0, 0.5703125, 0)
  360. shotgun.Size = UDim2.new(0, 222, 0, 24)
  361. shotgun.Font = Enum.Font.SourceSans
  362. shotgun.Text = "Fast Shotgun"
  363. shotgun.TextColor3 = Color3.new(0, 0, 0)
  364. shotgun.TextSize = 14
  365. shotgun.MouseButton1Down:connect(function()
  366. local player = game:GetService("Players").LocalPlayer
  367. local gun = player.Backpack:FindFirstChild("Remington 870")
  368. local sM = require(gun:FindFirstChild("GunStates"))
  369. sM["Damage"] = 999
  370. sM["MaxAmmo"] = 9999991
  371. sM["StoredAmmo"] = 9999991
  372. sM["FireRate"] = 0.05
  373. sM["AmmoPerClip"] = 9999991
  374. sM["Range"] = 5000
  375. sM["ReloadTime"] = 0.05
  376. sM["Bullets"] = 10
  377. sM["AutoFire"] = true
  378. end)
  379.  
  380. m4a1.Name = "m4a1"
  381. m4a1.Parent = page1gui
  382. m4a1.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  383. m4a1.Position = UDim2.new(0.0425531901, 0, 0.7109375, 0)
  384. m4a1.Size = UDim2.new(0, 222, 0, 24)
  385. m4a1.Font = Enum.Font.SourceSans
  386. m4a1.Text = "Fast M4A1"
  387. m4a1.TextColor3 = Color3.new(0, 0, 0)
  388. m4a1.TextSize = 14
  389. m4a1.MouseButton1Down:connect(function()
  390. local player = game:GetService("Players").LocalPlayer
  391. local gun = player.Backpack:FindFirstChild("M4A1")
  392. local sM = require(gun:FindFirstChild("GunStates"))
  393. sM["Damage"] = 999
  394. sM["MaxAmmo"] = 9999991
  395. sM["StoredAmmo"] = 9999991
  396. sM["FireRate"] = 0.05
  397. sM["AmmoPerClip"] = 9999991
  398. sM["Range"] = 5000
  399. sM["ReloadTime"] = 0.05
  400. sM["Bullets"] = 10
  401. sM["AutoFire"] = true
  402. end)
  403.  
  404. taser.Name = "taser"
  405. taser.Parent = page1gui
  406. taser.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  407. taser.Position = UDim2.new(0.328605205, 0, 0.30859375, 0)
  408. taser.Size = UDim2.new(0, 101, 0, 24)
  409. taser.Font = Enum.Font.SourceSans
  410. taser.Text = "Fast Taser"
  411. taser.TextColor3 = Color3.new(0, 0, 0)
  412. taser.TextSize = 14
  413. taser.MouseButton1Down:connect(function()
  414. local player = game:GetService("Players").LocalPlayer
  415. local gun = player.Backpack:FindFirstChild("Taser")
  416. local sM = require(gun:FindFirstChild("GunStates"))
  417. sM["Damage"] = 999
  418. sM["MaxAmmo"] = 9999991
  419. sM["StoredAmmo"] = 9999991
  420. sM["FireRate"] = 0.05
  421. sM["AmmoPerClip"] = 9999991
  422. sM["Range"] = 5000
  423. sM["ReloadTime"] = 0.05
  424. sM["Bullets"] = 10
  425. sM["AutoFire"] = true
  426. end)
  427.  
  428. allguns.Name = "allguns"
  429. allguns.Parent = page1gui
  430. allguns.BackgroundColor3 = Color3.new(0.403922, 0.403922, 0.403922)
  431. allguns.Position = UDim2.new(0.0425531901, 0, 0.859375, 0)
  432. allguns.Size = UDim2.new(0, 222, 0, 24)
  433. allguns.Font = Enum.Font.SourceSans
  434. allguns.Text = "All guns"
  435. allguns.TextColor3 = Color3.new(0, 0, 0)
  436. allguns.TextSize = 14
  437. allguns.MouseButton1Down:connect(function()
  438. for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  439.  
  440. lol = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  441. print(lol)
  442. end
  443. end)
  444.  
  445. admin.Name = "admin"
  446. admin.Parent = page1gui
  447. admin.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  448. admin.Position = UDim2.new(0.628841579, 0, 0.30859375, 0)
  449. admin.Size = UDim2.new(0, 101, 0, 91)
  450. admin.Font = Enum.Font.SourceSans
  451. admin.Text = "FE Admin"
  452. admin.TextColor3 = Color3.new(0, 0, 0)
  453. admin.TextSize = 14
  454. admin.MouseButton1Down:connect(function()
  455. loadstring(game:HttpGet(("https://pastebin.com/raw/44bNjECt"),true))()
  456. end)
  457.  
  458. btools.Name = "btools"
  459. btools.Parent = page1gui
  460. btools.BackgroundColor3 = Color3.new(0.407843, 0.407843, 0.407843)
  461. btools.Position = UDim2.new(0.628841579, 0, 0.7109375, 0)
  462. btools.Size = UDim2.new(0, 101, 0, 62)
  463. btools.Font = Enum.Font.SourceSans
  464. btools.Text = "Btools"
  465. btools.TextColor3 = Color3.new(0, 0, 0)
  466. btools.TextSize = 14
  467. btools.MouseButton1Down:connect(function()
  468. btools.MouseButton1Down:connect(function()
  469. Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 2
  470. Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 3
  471. Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 4
  472. loadstring(game:GetObjects('rbxassetid://552440069')[1].Source)()
  473. end)
  474. end)
  475.  
  476. page2gui.Name = "page2gui"
  477. page2gui.Parent = ScreenGui
  478. page2gui.BackgroundColor3 = Color3.new(1, 1, 1)
  479. page2gui.Position = UDim2.new(0.227522969, 0, 0.205273092, 0)
  480. page2gui.Size = UDim2.new(0, 423, 0, 256)
  481. page2gui.Visible = false
  482. page2gui.Active = true
  483. page2gui.Draggable = true
  484.  
  485. trash2.Name = "trash2"
  486. trash2.Parent = page2gui
  487. trash2.BackgroundColor3 = Color3.new(0.494118, 0.494118, 0.494118)
  488. trash2.Size = UDim2.new(0, 423, 0, 65)
  489.  
  490. logo.Name = "logo"
  491. logo.Parent = page2gui
  492. logo.BackgroundColor3 = Color3.new(0.47451, 0.47451, 0.47451)
  493. logo.Size = UDim2.new(0, 73, 0, 65)
  494. logo.Image = "rbxassetid://112536744"
  495.  
  496. trash3.Name = "trash3"
  497. trash3.Parent = page2gui
  498. trash3.BackgroundColor3 = Color3.new(1, 1, 1)
  499. trash3.BackgroundTransparency = 1
  500. trash3.Position = UDim2.new(0.231678486, 0, 0.02734375, 0)
  501. trash3.Size = UDim2.new(0, 299, 0, 50)
  502. trash3.Font = Enum.Font.SourceSans
  503. trash3.Text = "Prison Smasher V3"
  504. trash3.TextColor3 = Color3.new(0, 0, 0)
  505. trash3.TextScaled = true
  506. trash3.TextSize = 14
  507. trash3.TextWrapped = true
  508.  
  509. close.Name = "close"
  510. close.Parent = page2gui
  511. close.BackgroundColor3 = Color3.new(1, 0, 0)
  512. close.Position = UDim2.new(0.914893627, 0, 0.27734375, 0)
  513. close.Size = UDim2.new(0, 36, 0, 24)
  514. close.Font = Enum.Font.SourceSans
  515. close.Text = "X"
  516. close.TextColor3 = Color3.new(0, 0, 0)
  517. close.TextSize = 14
  518. close.MouseButton1Down:connect(function()
  519. page2gui.Visible = false
  520. opengui.Visible = true
  521. end)
  522.  
  523. page1.Name = "page1"
  524. page1.Parent = page2gui
  525. page1.BackgroundColor3 = Color3.new(1, 0, 0)
  526. page1.Position = UDim2.new(0.914893627, 0, 0.7109375, 0)
  527. page1.Size = UDim2.new(0, 36, 0, 24)
  528. page1.Font = Enum.Font.SourceSans
  529. page1.Text = "1"
  530. page1.TextColor3 = Color3.new(0, 0, 0)
  531. page1.TextSize = 14
  532. page1.MouseButton1Down:connect(function()
  533. page1gui.Visible = true
  534. page2gui.Visible = false
  535. end)
  536.  
  537. page2.Name = "page2"
  538. page2.Parent = page2gui
  539. page2.BackgroundColor3 = Color3.new(1, 0, 0)
  540. page2.Position = UDim2.new(0.914893627, 0, 0.859375, 0)
  541. page2.Size = UDim2.new(0, 36, 0, 24)
  542. page2.Font = Enum.Font.SourceSans
  543. page2.Text = "2"
  544. page2.TextColor3 = Color3.new(0, 0, 0)
  545. page2.TextSize = 14
  546. page2.MouseButton1Down:connect(function()
  547. page2gui.Visible = true
  548. page1gui.Visible = false
  549. end)
  550.  
  551. police.Name = "police"
  552. police.Parent = page2gui
  553. police.BackgroundColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  554. police.Position = UDim2.new(0.0307328589, 0, 0.859375, 0)
  555. police.Size = UDim2.new(0, 358, 0, 24)
  556. police.Font = Enum.Font.SourceSans
  557. police.Text = "Police"
  558. police.TextColor3 = Color3.new(0, 0, 0)
  559. police.TextSize = 14
  560. police.MouseButton1Down:connect(function()
  561. Workspace.Remote.TeamEvent:FireServer("Bright blue")
  562. end)
  563.  
  564. criminal.Name = "criminal"
  565. criminal.Parent = page2gui
  566. criminal.BackgroundColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  567. criminal.Position = UDim2.new(0.0307328608, 0, 0.7109375, 0)
  568. criminal.Size = UDim2.new(0, 172, 0, 24)
  569. criminal.Font = Enum.Font.SourceSans
  570. criminal.Text = "Criminal"
  571. criminal.TextColor3 = Color3.new(0, 0, 0)
  572. criminal.TextSize = 14
  573. criminal.MouseButton1Down:connect(function()
  574. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new (283, 72, 2213)
  575. end)
  576.  
  577. prisoner.Name = "prisoner"
  578. prisoner.Parent = page2gui
  579. prisoner.BackgroundColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  580. prisoner.Position = UDim2.new(0.470449179, 0, 0.7109375, 0)
  581. prisoner.Size = UDim2.new(0, 172, 0, 24)
  582. prisoner.Font = Enum.Font.SourceSans
  583. prisoner.Text = "Prisoner"
  584. prisoner.TextColor3 = Color3.new(0, 0, 0)
  585. prisoner.TextSize = 14
  586. prisoner.MouseButton1Down:connect(function()
  587. Workspace.Remote.TeamEvent:FireServer("Bright orange")
  588. end)
  589.  
  590. allmelee.Name = "allmelee"
  591. allmelee.Parent = page2gui
  592. allmelee.BackgroundColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  593. allmelee.Position = UDim2.new(0.0307328608, 0, 0.40234375, 0)
  594. allmelee.Size = UDim2.new(0, 358, 0, 67)
  595. allmelee.Font = Enum.Font.SourceSans
  596. allmelee.Text = "All Melee"
  597. allmelee.TextColor3 = Color3.new(0, 0, 0)
  598. allmelee.TextSize = 14
  599. allmelee.MouseButton1Down:connect(function()
  600. local weapons = {"Crude Knife", "Sharpened stick", "Extendo mirror"}
  601. for i, v in pairs(game.ReplicatedStorage.Tools:GetChildren()) do
  602. for j, k in pairs(weapons) do
  603. if v.Name == k then
  604. v:Clone().Parent = game.Players.LocalPlayer.Backpack
  605. end
  606. end
  607. end
  608. end)
  609.  
  610. killall.Name = "killall"
  611. killall.Parent = page2gui
  612. killall.BackgroundColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  613. killall.Position = UDim2.new(0.0307328589, 0, 0.27734375, 0)
  614. killall.Size = UDim2.new(0, 358, 0, 24)
  615. killall.Font = Enum.Font.SourceSans
  616. killall.Text = "Kill all"
  617. killall.TextColor3 = Color3.new(0, 0, 0)
  618. killall.TextSize = 14
  619. killall.MouseButton1Down:connect(function()
  620. function kill(a)
  621. local A_1 =
  622. {
  623. [1] =
  624. {
  625. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-391.152252, 8.65560055, -83.2166901)),
  626. ["Distance"] = 3.2524313926697,
  627. ["Cframe"] = CFrame.new(840.310791, 101.334137, 2267.87988, 0.0636406094, 0.151434347, -0.986416459, 0, 0.988420188, 0.151741937, 0.997972965, -0.00965694897, 0.0629036576),
  628. ["Hit"] = a.Character.Head
  629. },
  630. [2] =
  631. {
  632. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-392.481476, -8.44939327, -76.7261353)),
  633. ["Distance"] = 3.2699294090271,
  634. ["Cframe"] = CFrame.new(840.290466, 101.184189, 2267.93506, 0.0964837447, 0.0589403138, -0.993587971, 4.65661287e-10, 0.998245299, 0.0592165813, 0.995334625, -0.00571343815, 0.0963144377),
  635. ["Hit"] = a.Character.Head
  636. },
  637. [3] =
  638. {
  639. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-389.21701, -2.50536323, -92.2163162)),
  640. ["Distance"] = 3.1665518283844,
  641. ["Cframe"] = CFrame.new(840.338867, 101.236496, 2267.80371, 0.0166504811, 0.0941716284, -0.995416701, 1.16415322e-10, 0.995554805, 0.0941846818, 0.999861419, -0.00156822044, 0.0165764652),
  642. ["Hit"] = a.Character.Head
  643. },
  644. [4] =
  645. {
  646. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-393.353973, 3.13988972, -72.5452042)),
  647. ["Distance"] = 3.3218522071838,
  648. ["Cframe"] = CFrame.new(840.277222, 101.285957, 2267.9707, 0.117109694, 0.118740402, -0.985994935, -1.86264515e-09, 0.992826641, 0.119563118, 0.993119001, -0.0140019981, 0.116269611),
  649. ["Hit"] = a.Character.Head
  650. },
  651. [5] =
  652. {
  653. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-390.73172, 3.2097764, -85.5477524)),
  654. ["Distance"] = 3.222757101059,
  655. ["Cframe"] = CFrame.new(840.317993, 101.286423, 2267.86035, 0.0517584644, 0.123365127, -0.991010666, 0, 0.992340803, 0.123530701, 0.99865967, -0.00639375951, 0.0513620302),
  656. ["Hit"] = a.Character.Head
  657. }
  658. }
  659. local A_2 = game.Players.LocalPlayer.Backpack["Remington 870"]
  660. local Event = game:GetService("ReplicatedStorage").ShootEvent
  661. Event:FireServer(A_1, A_2)
  662. Event:FireServer(A_1, A_2)
  663. end
  664.  
  665. game.Players.LocalPlayer.Chatted:connect(function(msg)
  666. if msg == ";kill others" then
  667. for i,v in pairs(game.Players:GetChildren())do
  668. if v.Name ~= game.Players.LocalPlayer.Name then
  669. kill(v)
  670. end
  671. end
  672. end
  673. end)
  674. end)
  675.  
  676. opengui.Name = "opengui"
  677. opengui.Parent = ScreenGui
  678. opengui.BackgroundColor3 = Color3.new(1, 1, 1)
  679. opengui.Position = UDim2.new(0, 0, 0.429378539, 0)
  680. opengui.Size = UDim2.new(0, 125, 0, 18)
  681. opengui.Visible = false
  682.  
  683. open.Name = "open"
  684. open.Parent = opengui
  685. open.BackgroundColor3 = Color3.new(0.368627, 0.368627, 0.368627)
  686. open.BorderSizePixel = 5
  687. open.Size = UDim2.new(0, 125, 0, 18)
  688. open.Font = Enum.Font.SourceSans
  689. open.Text = "Open GUI"
  690. open.TextColor3 = Color3.new(0, 0, 0)
  691. open.TextSize = 14
  692. open.MouseButton1Down:connect(function()
  693. page1gui.Visible = true
  694. opengui.Visible = false
  695. end)
  696.  
  697. logingui.Name = "logingui"
  698. logingui.Parent = ScreenGui
  699. logingui.BackgroundColor3 = Color3.new(1, 1, 1)
  700. logingui.Position = UDim2.new(0.177064225, 0, 0.348399222, 0)
  701. logingui.Size = UDim2.new(0, 232, 0, 160)
  702. logingui.Active = true
  703. logingui.Draggable = true
  704.  
  705. trash1.Name = "trash1"
  706. trash1.Parent = logingui
  707. trash1.BackgroundColor3 = Color3.new(0.372549, 0.372549, 0.372549)
  708. trash1.Position = UDim2.new(0.068965517, 0, 0.0625, 0)
  709. trash1.Size = UDim2.new(0, 200, 0, 50)
  710. trash1.Font = Enum.Font.SourceSans
  711. trash1.Text = "Prison Smasher V3"
  712. trash1.TextColor3 = Color3.new(0, 0, 0)
  713. trash1.TextScaled = true
  714. trash1.TextSize = 14
  715. trash1.TextWrapped = true
  716.  
  717. login.Name = "login"
  718. login.Parent = logingui
  719. login.BackgroundColor3 = Color3.new(0.372549, 0.372549, 0.372549)
  720. login.Position = UDim2.new(0.18534483, 0, 0.449999988, 0)
  721. login.Size = UDim2.new(0, 146, 0, 50)
  722. login.Font = Enum.Font.SourceSans
  723. login.Text = "Login"
  724. login.TextColor3 = Color3.new(0, 0, 0)
  725. login.TextScaled = true
  726. login.TextSize = 14
  727. login.TextWrapped = true
  728. login.MouseButton1Down:connect(function()
  729. opengui.Visible = true
  730. logingui.Visible = false
  731. end)
  732.  
  733. trash.Name = "trash"
  734. trash.Parent = logingui
  735. trash.BackgroundColor3 = Color3.new(0.372549, 0.372549, 0.372549)
  736. trash.Position = UDim2.new(0.068965517, 0, 0.831250012, 0)
  737. trash.Size = UDim2.new(0, 200, 0, 17)
  738. trash.Font = Enum.Font.SourceSans
  739. trash.Text = "Made by MasterXasterM"
  740. trash.TextColor3 = Color3.new(0, 0, 0)
  741. trash.TextScaled = true
  742. trash.TextSize = 14
  743. trash.TextWrapped = true
  744.  
  745. -- Scripts
  746. --GUI end
  747. --GUI end
  748. --GUI end
  749. --GUI end
  750. --GUI end
  751. --GUI end
  752.  
  753.  
  754.  
  755.  
  756.  
  757. --Viianity
  758. --Viianity
  759. --Viianity
  760. --Viianity
  761. --Viianity
  762. --Viianity
  763. if string.sub(msg, 1, 10) == (prefix.."arrest all" then
  764. local VillanityGUIV1 = Instance.new("ScreenGui")
  765. local Main = Instance.new("Frame")
  766. local Frame = Instance.new("Frame")
  767. local Frame_2 = Instance.new("Frame")
  768. local Frame_3 = Instance.new("Frame")
  769. local Text = Instance.new("TextLabel")
  770. local Text_2 = Instance.new("TextLabel")
  771. local Frame_4 = Instance.new("Frame")
  772. local Frame_5 = Instance.new("Frame")
  773. local Frame_6 = Instance.new("Frame")
  774. local Frame_7 = Instance.new("Frame")
  775. local Close = Instance.new("Frame")
  776. local Frame_8 = Instance.new("Frame")
  777. local Frame_9 = Instance.new("Frame")
  778. local Frame_10 = Instance.new("Frame")
  779. local Frame_11 = Instance.new("Frame")
  780. local CloseButton = Instance.new("TextButton")
  781. local KillAuraOn = Instance.new("Frame")
  782. local KAOnB = Instance.new("TextButton")
  783. local KillAuraOff = Instance.new("Frame")
  784. local KAOffB = Instance.new("TextButton")
  785. local Text_3 = Instance.new("TextLabel")
  786. local Text_4 = Instance.new("TextLabel")
  787. local GodModeOn = Instance.new("Frame")
  788. local GMOnB = Instance.new("TextButton")
  789. local GodModeOff = Instance.new("Frame")
  790. local GMOffB = Instance.new("TextButton")
  791. local Text_5 = Instance.new("TextLabel")
  792. local NoclipOn = Instance.new("Frame")
  793. local NCOnB = Instance.new("TextButton")
  794. local NoclipOff = Instance.new("Frame")
  795. local NCOffB = Instance.new("TextButton")
  796. local Text_6 = Instance.new("TextLabel")
  797. local ClickArrest = Instance.new("Frame")
  798. local CAOnB = Instance.new("TextButton")
  799. local Text_7 = Instance.new("TextLabel")
  800. local Guard = Instance.new("Frame")
  801. local GuardB = Instance.new("TextButton")
  802. local Inmate = Instance.new("Frame")
  803. local InmateB = Instance.new("TextButton")
  804. local Text_8 = Instance.new("TextLabel")
  805. local ClickArrestOn = Instance.new("Frame")
  806. local Text_9 = Instance.new("TextLabel")
  807. local KillAll = Instance.new("Frame")
  808. local KillAllB = Instance.new("TextButton")
  809. local Text_10 = Instance.new("TextLabel")
  810. local Text_11 = Instance.new("TextLabel")
  811. local ArrestAll = Instance.new("Frame")
  812. local ArrestAllB = Instance.new("TextButton")
  813. local ClickTP = Instance.new("Frame")
  814. local ClickTPOnB = Instance.new("TextButton")
  815. local Weapons = Instance.new("Frame")
  816. local WepB = Instance.new("TextButton")
  817. local Text_12 = Instance.new("TextLabel")
  818. local Text_13 = Instance.new("TextLabel")
  819. local Text_14 = Instance.new("TextLabel")
  820. local FlyingOn = Instance.new("Frame")
  821. local FlyOnB = Instance.new("TextButton")
  822. local FlyingOff = Instance.new("Frame")
  823. local FlyOffB = Instance.new("TextButton")
  824. local Btools = Instance.new("Frame")
  825. local BtoolsOn = Instance.new("TextButton")
  826. local Open = Instance.new("Frame")
  827. local Frame_12 = Instance.new("Frame")
  828. local Frame_13 = Instance.new("Frame")
  829. local Frame_14 = Instance.new("Frame")
  830. local Frame_15 = Instance.new("Frame")
  831. local OpenButton = Instance.new("TextButton")
  832. print("Successfully loaded VillanityGUI")
  833. --Properties:
  834. VillanityGUIV1.Name = "VillanityGUIV1"
  835. VillanityGUIV1.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  836.  
  837. Main.Name = "Main"
  838. Main.Parent = VillanityGUIV1
  839. Main.Active = true
  840. Main.BackgroundColor3 = Color3.new(0, 0, 0)
  841. Main.BackgroundTransparency = 0.5
  842. Main.BorderColor3 = Color3.new(0, 0, 0)
  843. Main.BorderSizePixel = 0
  844. Main.Position = UDim2.new(0.37534523, 0, 0.163406581, 0)
  845. Main.Size = UDim2.new(0, 340, 0, 363)
  846.  
  847. Frame.Parent = Main
  848. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  849. Frame.BackgroundTransparency = 0.40000000596046
  850. Frame.BorderSizePixel = 0
  851. Frame.Position = UDim2.new(0, 0, -0.187110379, 0)
  852. Frame.Size = UDim2.new(0, 340, 0, 57)
  853.  
  854. Frame_2.Parent = Main
  855. Frame_2.BackgroundColor3 = Color3.new(1, 1, 1)
  856. Frame_2.BackgroundTransparency = 0.30000001192093
  857. Frame_2.BorderSizePixel = 0
  858. Frame_2.Position = UDim2.new(0, 0, -0.0290706288, 0)
  859. Frame_2.Size = UDim2.new(0, 340, 0, 11)
  860.  
  861. Frame_3.Parent = Main
  862. Frame_3.BackgroundColor3 = Color3.new(1, 1, 1)
  863. Frame_3.BackgroundTransparency = 0.30000001192093
  864. Frame_3.BorderSizePixel = 0
  865. Frame_3.Position = UDim2.new(0, 0, -0.199869528, 0)
  866. Frame_3.Size = UDim2.new(0, 340, 0, 5)
  867.  
  868. Text.Name = "Text"
  869. Text.Parent = Frame_3
  870. Text.BackgroundColor3 = Color3.new(1, 1, 1)
  871. Text.BackgroundTransparency = 1
  872. Text.BorderSizePixel = 0
  873. Text.Position = UDim2.new(0.153058887, 0, -2.60000038, 0)
  874. Text.Size = UDim2.new(0, 234, 0, 67)
  875. Text.Font = Enum.Font.Cartoon
  876. Text.Text = "Villanity GUI V1"
  877. Text.TextColor3 = Color3.new(1, 1, 1)
  878. Text.TextSize = 40
  879.  
  880. Text_2.Name = "Text"
  881. Text_2.Parent = Frame_3
  882. Text_2.BackgroundColor3 = Color3.new(1, 1, 1)
  883. Text_2.BackgroundTransparency = 1
  884. Text_2.BorderSizePixel = 0
  885. Text_2.Position = UDim2.new(0.156000018, 0, 2.39999771, 0)
  886. Text_2.Size = UDim2.new(0, 234, 0, 67)
  887. Text_2.Font = Enum.Font.Cartoon
  888. Text_2.Text = "Prison Life"
  889. Text_2.TextColor3 = Color3.new(1, 1, 1)
  890. Text_2.TextSize = 40
  891.  
  892. Frame_4.Parent = Main
  893. Frame_4.BackgroundColor3 = Color3.new(1, 1, 1)
  894. Frame_4.BackgroundTransparency = 0.30000001192093
  895. Frame_4.BorderSizePixel = 0
  896. Frame_4.Position = UDim2.new(1, 0, -0.217630848, 0)
  897. Frame_4.Size = UDim2.new(0, 5, 0, 453)
  898.  
  899. Frame_5.Parent = Main
  900. Frame_5.BackgroundColor3 = Color3.new(1, 1, 1)
  901. Frame_5.BackgroundTransparency = 0.30000001192093
  902. Frame_5.BorderSizePixel = 0
  903. Frame_5.Position = UDim2.new(0, 0, 1.00123239, 0)
  904. Frame_5.Size = UDim2.new(0, 340, 0, 5)
  905.  
  906. Frame_6.Parent = Main
  907. Frame_6.BackgroundColor3 = Color3.new(1, 1, 1)
  908. Frame_6.BackgroundTransparency = 0.30000001192093
  909. Frame_6.BorderSizePixel = 0
  910. Frame_6.Position = UDim2.new(-0.0147058647, 0, -0.217630848, 0)
  911. Frame_6.Size = UDim2.new(0, 5, 0, 453)
  912.  
  913. Frame_7.Parent = Main
  914. Frame_7.BackgroundColor3 = Color3.new(1, 1, 1)
  915. Frame_7.BackgroundTransparency = 0.30000001192093
  916. Frame_7.BorderSizePixel = 0
  917. Frame_7.Position = UDim2.new(0.491176456, 0, 0, 0)
  918. Frame_7.Size = UDim2.new(0, 5, 0, 363)
  919.  
  920. Close.Name = "Close"
  921. Close.Parent = Main
  922. Close.BackgroundColor3 = Color3.new(0, 0, 0)
  923. Close.BackgroundTransparency = 1
  924. Close.BorderColor3 = Color3.new(1, 1, 1)
  925. Close.BorderSizePixel = 0
  926. Close.Position = UDim2.new(-1.15294135, 500, 1.03108263, 0)
  927. Close.Size = UDim2.new(0, 121, 0, 44)
  928.  
  929. Frame_8.Parent = Close
  930. Frame_8.BackgroundColor3 = Color3.new(1, 1, 1)
  931. Frame_8.BackgroundTransparency = 0.30000001192093
  932. Frame_8.BorderSizePixel = 0
  933. Frame_8.Position = UDim2.new(1, 0, 0, 0)
  934. Frame_8.Size = UDim2.new(0, 6, 0, 44)
  935.  
  936. Frame_9.Parent = Close
  937. Frame_9.BackgroundColor3 = Color3.new(1, 1, 1)
  938. Frame_9.BackgroundTransparency = 0.30000001192093
  939. Frame_9.BorderSizePixel = 0
  940. Frame_9.Position = UDim2.new(-0.0495867766, 0, 1, 0)
  941. Frame_9.Size = UDim2.new(0, 133, 0, 6)
  942.  
  943. Frame_10.Parent = Close
  944. Frame_10.BackgroundColor3 = Color3.new(1, 1, 1)
  945. Frame_10.BackgroundTransparency = 0.30000001192093
  946. Frame_10.BorderSizePixel = 0
  947. Frame_10.Position = UDim2.new(-0.0495867729, 0, 0, 0)
  948. Frame_10.Size = UDim2.new(0, 6, 0, 44)
  949.  
  950. Frame_11.Parent = Close
  951. Frame_11.BackgroundColor3 = Color3.new(1, 1, 1)
  952. Frame_11.BackgroundTransparency = 0.30000001192093
  953. Frame_11.BorderSizePixel = 0
  954. Frame_11.Position = UDim2.new(-0.0495867766, 0, -0.136363626, 0)
  955. Frame_11.Size = UDim2.new(0, 133, 0, 6)
  956.  
  957. CloseButton.Name = "CloseButton"
  958. CloseButton.Parent = Close
  959. CloseButton.Active = false
  960. CloseButton.BackgroundColor3 = Color3.new(0, 0, 0)
  961. CloseButton.BackgroundTransparency = 0.5
  962. CloseButton.BorderSizePixel = 0
  963. CloseButton.Size = UDim2.new(0, 121, 0, 44)
  964. CloseButton.Font = Enum.Font.Cartoon
  965. CloseButton.Text = "Close"
  966. CloseButton.TextColor3 = Color3.new(1, 1, 1)
  967. CloseButton.TextSize = 25
  968.  
  969. KillAuraOn.Name = "KillAuraOn"
  970. KillAuraOn.Parent = Main
  971. KillAuraOn.BackgroundColor3 = Color3.new(0, 0, 0)
  972. KillAuraOn.BackgroundTransparency = 1
  973. KillAuraOn.BorderColor3 = Color3.new(1, 1, 1)
  974. KillAuraOn.BorderSizePixel = 0
  975. KillAuraOn.Position = UDim2.new(-1.87647057, 500, 0.0365923047, 0)
  976. KillAuraOn.Size = UDim2.new(0, 121, 0, 44)
  977.  
  978. KAOnB.Name = "KAOnB"
  979. KAOnB.Parent = KillAuraOn
  980. KAOnB.Active = false
  981. KAOnB.BackgroundColor3 = Color3.new(0, 0, 0)
  982. KAOnB.BackgroundTransparency = 0.5
  983. KAOnB.BorderSizePixel = 0
  984. KAOnB.Size = UDim2.new(0, 121, 0, 44)
  985. KAOnB.Font = Enum.Font.Cartoon
  986. KAOnB.Text = "Turn On"
  987. KAOnB.TextColor3 = Color3.new(1, 1, 1)
  988. KAOnB.TextSize = 25
  989.  
  990. KillAuraOff.Name = "KillAuraOff"
  991. KillAuraOff.Parent = Main
  992. KillAuraOff.BackgroundColor3 = Color3.new(0, 0, 0)
  993. KillAuraOff.BackgroundTransparency = 1
  994. KillAuraOff.BorderColor3 = Color3.new(1, 1, 1)
  995. KillAuraOff.BorderSizePixel = 0
  996. KillAuraOff.Position = UDim2.new(-1.87647057, 500, 0.0365923047, 0)
  997. KillAuraOff.Size = UDim2.new(0, 121, 0, 44)
  998. KillAuraOff.Visible = false
  999.  
  1000. KAOffB.Name = "KAOffB"
  1001. KAOffB.Parent = KillAuraOff
  1002. KAOffB.Active = false
  1003. KAOffB.BackgroundColor3 = Color3.new(0, 0, 0)
  1004. KAOffB.BackgroundTransparency = 0.5
  1005. KAOffB.BorderSizePixel = 0
  1006. KAOffB.Size = UDim2.new(0, 121, 0, 44)
  1007. KAOffB.Font = Enum.Font.Cartoon
  1008. KAOffB.Text = "Turn Off"
  1009. KAOffB.TextColor3 = Color3.new(1, 1, 1)
  1010. KAOffB.TextSize = 25
  1011.  
  1012. Text_3.Name = "Text"
  1013. Text_3.Parent = Main
  1014. Text_3.BackgroundColor3 = Color3.new(0, 0, 0)
  1015. Text_3.BackgroundTransparency = 1
  1016. Text_3.Position = UDim2.new(-0.0511663258, 0, 0.028236717, 0)
  1017. Text_3.Size = UDim2.new(0, 200, 0, 50)
  1018. Text_3.Font = Enum.Font.Cartoon
  1019. Text_3.Text = "KillAura"
  1020. Text_3.TextColor3 = Color3.new(1, 1, 1)
  1021. Text_3.TextSize = 25
  1022.  
  1023. Text_4.Name = "Text"
  1024. Text_4.Parent = Main
  1025. Text_4.BackgroundColor3 = Color3.new(0, 0, 0)
  1026. Text_4.BackgroundTransparency = 1
  1027. Text_4.Position = UDim2.new(-0.0511663258, 0, 0.193526015, 0)
  1028. Text_4.Size = UDim2.new(0, 200, 0, 50)
  1029. Text_4.Font = Enum.Font.Cartoon
  1030. Text_4.Text = "GodMode"
  1031. Text_4.TextColor3 = Color3.new(1, 1, 1)
  1032. Text_4.TextSize = 25
  1033.  
  1034. GodModeOn.Name = "GodModeOn"
  1035. GodModeOn.Parent = Main
  1036. GodModeOn.BackgroundColor3 = Color3.new(0, 0, 0)
  1037. GodModeOn.BackgroundTransparency = 1
  1038. GodModeOn.BorderColor3 = Color3.new(1, 1, 1)
  1039. GodModeOn.BorderSizePixel = 0
  1040. GodModeOn.Position = UDim2.new(-1.8794117, 500, 0.193617105, 0)
  1041. GodModeOn.Size = UDim2.new(0, 121, 0, 44)
  1042.  
  1043. GMOnB.Name = "GMOnB"
  1044. GMOnB.Parent = GodModeOn
  1045. GMOnB.Active = false
  1046. GMOnB.BackgroundColor3 = Color3.new(0, 0, 0)
  1047. GMOnB.BackgroundTransparency = 0.5
  1048. GMOnB.BorderSizePixel = 0
  1049. GMOnB.Size = UDim2.new(0, 121, 0, 44)
  1050. GMOnB.Font = Enum.Font.Cartoon
  1051. GMOnB.Text = "Turn On"
  1052. GMOnB.TextColor3 = Color3.new(1, 1, 1)
  1053. GMOnB.TextSize = 25
  1054.  
  1055. GodModeOff.Name = "GodModeOff"
  1056. GodModeOff.Parent = Main
  1057. GodModeOff.BackgroundColor3 = Color3.new(0, 0, 0)
  1058. GodModeOff.BackgroundTransparency = 1
  1059. GodModeOff.BorderColor3 = Color3.new(1, 1, 1)
  1060. GodModeOff.BorderSizePixel = 0
  1061. GodModeOff.Position = UDim2.new(-1.8794117, 500, 0.193617105, 0)
  1062. GodModeOff.Size = UDim2.new(0, 121, 0, 44)
  1063. GodModeOff.Visible = false
  1064.  
  1065. GMOffB.Name = "GMOffB"
  1066. GMOffB.Parent = GodModeOff
  1067. GMOffB.Active = false
  1068. GMOffB.BackgroundColor3 = Color3.new(0, 0, 0)
  1069. GMOffB.BackgroundTransparency = 0.5
  1070. GMOffB.BorderSizePixel = 0
  1071. GMOffB.Size = UDim2.new(0, 121, 0, 44)
  1072. GMOffB.Visible = true
  1073. GMOffB.Font = Enum.Font.Cartoon
  1074. GMOffB.Text = "Turn Off"
  1075. GMOffB.TextColor3 = Color3.new(1, 1, 1)
  1076. GMOffB.TextSize = 25
  1077.  
  1078. Text_5.Name = "Text"
  1079. Text_5.Parent = Main
  1080. Text_5.BackgroundColor3 = Color3.new(0, 0, 0)
  1081. Text_5.BackgroundTransparency = 1
  1082. Text_5.Position = UDim2.new(-0.0511663258, 0, 0.336776704, 0)
  1083. Text_5.Size = UDim2.new(0, 200, 0, 50)
  1084. Text_5.Font = Enum.Font.Cartoon
  1085. Text_5.Text = "Noclip"
  1086. Text_5.TextColor3 = Color3.new(1, 1, 1)
  1087. Text_5.TextSize = 25
  1088.  
  1089. NoclipOn.Name = "NoclipOn"
  1090. NoclipOn.Parent = Main
  1091. NoclipOn.BackgroundColor3 = Color3.new(0, 0, 0)
  1092. NoclipOn.BackgroundTransparency = 1
  1093. NoclipOn.BorderColor3 = Color3.new(1, 1, 1)
  1094. NoclipOn.BorderSizePixel = 0
  1095. NoclipOn.Position = UDim2.new(-1.87600005, 500, 0.344999999, 0)
  1096. NoclipOn.Size = UDim2.new(0, 121, 0, 44)
  1097.  
  1098. NCOnB.Name = "NCOnB"
  1099. NCOnB.Parent = NoclipOn
  1100. NCOnB.Active = false
  1101. NCOnB.BackgroundColor3 = Color3.new(0, 0, 0)
  1102. NCOnB.BackgroundTransparency = 0.5
  1103. NCOnB.BorderSizePixel = 0
  1104. NCOnB.Size = UDim2.new(0, 121, 0, 44)
  1105. NCOnB.Font = Enum.Font.Cartoon
  1106. NCOnB.Text = "Turn On"
  1107. NCOnB.TextColor3 = Color3.new(1, 1, 1)
  1108. NCOnB.TextSize = 25
  1109.  
  1110. NoclipOff.Name = "NoclipOff"
  1111. NoclipOff.Parent = Main
  1112. NoclipOff.BackgroundColor3 = Color3.new(0, 0, 0)
  1113. NoclipOff.BackgroundTransparency = 1
  1114. NoclipOff.BorderColor3 = Color3.new(1, 1, 1)
  1115. NoclipOff.BorderSizePixel = 0
  1116. NoclipOff.Position = UDim2.new(-1.87600005, 500, 0.344999999, 0)
  1117. NoclipOff.Size = UDim2.new(0, 121, 0, 44)
  1118. NoclipOff.Visible = false
  1119.  
  1120. NCOffB.Name = "NCOffB"
  1121. NCOffB.Parent = NoclipOff
  1122. NCOffB.Active = false
  1123. NCOffB.BackgroundColor3 = Color3.new(0, 0, 0)
  1124. NCOffB.BackgroundTransparency = 0.5
  1125. NCOffB.BorderSizePixel = 0
  1126. NCOffB.Size = UDim2.new(0, 121, 0, 44)
  1127. NCOffB.Font = Enum.Font.Cartoon
  1128. NCOffB.Text = "Turn Off"
  1129. NCOffB.TextColor3 = Color3.new(1, 1, 1)
  1130. NCOffB.TextSize = 25
  1131.  
  1132. Text_6.Name = "Text"
  1133. Text_6.Parent = Main
  1134. Text_6.BackgroundColor3 = Color3.new(0, 0, 0)
  1135. Text_6.BackgroundTransparency = 1
  1136. Text_6.Position = UDim2.new(-0.0511663258, 0, 0.491046697, 0)
  1137. Text_6.Size = UDim2.new(0, 200, 0, 50)
  1138. Text_6.Font = Enum.Font.Cartoon
  1139. Text_6.Text = "Click Arrest"
  1140. Text_6.TextColor3 = Color3.new(1, 1, 1)
  1141. Text_6.TextSize = 25
  1142.  
  1143. ClickArrest.Name = "ClickArrest"
  1144. ClickArrest.Parent = Main
  1145. ClickArrest.BackgroundColor3 = Color3.new(0, 0, 0)
  1146. ClickArrest.BackgroundTransparency = 1
  1147. ClickArrest.BorderColor3 = Color3.new(1, 1, 1)
  1148. ClickArrest.BorderSizePixel = 0
  1149. ClickArrest.Position = UDim2.new(-1.87647057, 500, 0.499402225, 0)
  1150. ClickArrest.Size = UDim2.new(0, 121, 0, 44)
  1151.  
  1152. CAOnB.Name = "CAOnB"
  1153. CAOnB.Parent = ClickArrest
  1154. CAOnB.Active = false
  1155. CAOnB.BackgroundColor3 = Color3.new(0, 0, 0)
  1156. CAOnB.BackgroundTransparency = 0.5
  1157. CAOnB.BorderSizePixel = 0
  1158. CAOnB.Size = UDim2.new(0, 121, 0, 44)
  1159. CAOnB.Font = Enum.Font.Cartoon
  1160. CAOnB.Text = "Activate"
  1161. CAOnB.TextColor3 = Color3.new(1, 1, 1)
  1162. CAOnB.TextSize = 25
  1163.  
  1164. Text_7.Name = "Text"
  1165. Text_7.Parent = Main
  1166. Text_7.BackgroundColor3 = Color3.new(0, 0, 0)
  1167. Text_7.BackgroundTransparency = 1
  1168. Text_7.Position = UDim2.new(-0.050999999, 0, 0.735000014, 0)
  1169. Text_7.Size = UDim2.new(0, 200, 0, 50)
  1170. Text_7.Font = Enum.Font.Cartoon
  1171. Text_7.Text = "Team Switch"
  1172. Text_7.TextColor3 = Color3.new(1, 1, 1)
  1173. Text_7.TextSize = 25
  1174.  
  1175. Guard.Name = "Guard"
  1176. Guard.Parent = Main
  1177. Guard.BackgroundColor3 = Color3.new(0, 0, 0)
  1178. Guard.BackgroundTransparency = 1
  1179. Guard.BorderColor3 = Color3.new(1, 1, 1)
  1180. Guard.BorderSizePixel = 0
  1181. Guard.Position = UDim2.new(-1.87647057, 500, 0.664691448, 0)
  1182. Guard.Size = UDim2.new(0, 121, 0, 44)
  1183.  
  1184. GuardB.Name = "GuardB"
  1185. GuardB.Parent = Guard
  1186. GuardB.Active = false
  1187. GuardB.BackgroundColor3 = Color3.new(0, 0, 0)
  1188. GuardB.BackgroundTransparency = 0.5
  1189. GuardB.BorderSizePixel = 0
  1190. GuardB.Size = UDim2.new(0, 121, 0, 44)
  1191. GuardB.Font = Enum.Font.Cartoon
  1192. GuardB.Text = "Guard"
  1193. GuardB.TextColor3 = Color3.new(1, 1, 1)
  1194. GuardB.TextSize = 25
  1195.  
  1196. Inmate.Name = "Inmate"
  1197. Inmate.Parent = Main
  1198. Inmate.BackgroundColor3 = Color3.new(0, 0, 0)
  1199. Inmate.BackgroundTransparency = 1
  1200. Inmate.BorderColor3 = Color3.new(1, 1, 1)
  1201. Inmate.BorderSizePixel = 0
  1202. Inmate.Position = UDim2.new(-1.87647057, 500, 0.829980731, 0)
  1203. Inmate.Size = UDim2.new(0, 121, 0, 44)
  1204.  
  1205. InmateB.Name = "InmateB"
  1206. InmateB.Parent = Inmate
  1207. InmateB.Active = false
  1208. InmateB.BackgroundColor3 = Color3.new(0, 0, 0)
  1209. InmateB.BackgroundTransparency = 0.5
  1210. InmateB.BorderSizePixel = 0
  1211. InmateB.Size = UDim2.new(0, 121, 0, 44)
  1212. InmateB.Font = Enum.Font.Cartoon
  1213. InmateB.Text = "Inmate"
  1214. InmateB.TextColor3 = Color3.new(1, 1, 1)
  1215. InmateB.TextSize = 25
  1216.  
  1217. Text_8.Name = "Text"
  1218. Text_8.Parent = Main
  1219. Text_8.BackgroundColor3 = Color3.new(0, 0, 0)
  1220. Text_8.BackgroundTransparency = 1
  1221. Text_8.Position = UDim2.new(0.460764706, 0, 0.0270110369, 0)
  1222. Text_8.Size = UDim2.new(0, 200, 0, 50)
  1223. Text_8.Font = Enum.Font.Cartoon
  1224. Text_8.Text = "KillAll"
  1225. Text_8.TextColor3 = Color3.new(1, 1, 1)
  1226. Text_8.TextSize = 25
  1227.  
  1228. ClickArrestOn.Name = "ClickArrestOn"
  1229. ClickArrestOn.Parent = Main
  1230. ClickArrestOn.BackgroundColor3 = Color3.new(0, 0, 0)
  1231. ClickArrestOn.BackgroundTransparency = 0.5
  1232. ClickArrestOn.BorderColor3 = Color3.new(1, 1, 1)
  1233. ClickArrestOn.BorderSizePixel = 0
  1234. ClickArrestOn.Position = UDim2.new(-1.87647057, 500, 0.499402225, 0)
  1235. ClickArrestOn.Size = UDim2.new(0, 121, 0, 44)
  1236. ClickArrestOn.Visible = false
  1237.  
  1238. Text_9.Name = "Text"
  1239. Text_9.Parent = ClickArrestOn
  1240. Text_9.BackgroundColor3 = Color3.new(0, 0, 0)
  1241. Text_9.BackgroundTransparency = 1
  1242. Text_9.Position = UDim2.new(-0.331, 0, -0.0680000037, 0)
  1243. Text_9.Size = UDim2.new(0, 200, 0, 50)
  1244. Text_9.Font = Enum.Font.Cartoon
  1245. Text_9.Text = "Activated"
  1246. Text_9.TextColor3 = Color3.new(1, 1, 1)
  1247. Text_9.TextSize = 25
  1248.  
  1249. KillAll.Name = "KillAll"
  1250. KillAll.Parent = Main
  1251. KillAll.BackgroundColor3 = Color3.new(0, 0, 0)
  1252. KillAll.BackgroundTransparency = 1
  1253. KillAll.BorderColor3 = Color3.new(1, 1, 1)
  1254. KillAll.BorderSizePixel = 0
  1255. KillAll.Position = UDim2.new(-0.420588136, 500, 0.0365922302, 0)
  1256. KillAll.Size = UDim2.new(0, 121, 0, 44)
  1257.  
  1258. KillAllB.Name = "KillAllB"
  1259. KillAllB.Parent = KillAll
  1260. KillAllB.Active = false
  1261. KillAllB.BackgroundColor3 = Color3.new(0, 0, 0)
  1262. KillAllB.BackgroundTransparency = 0.5
  1263. KillAllB.BorderSizePixel = 0
  1264. KillAllB.Size = UDim2.new(0, 121, 0, 44)
  1265. KillAllB.Font = Enum.Font.Cartoon
  1266. KillAllB.Text = "Activate"
  1267. KillAllB.TextColor3 = Color3.new(1, 1, 1)
  1268. KillAllB.TextSize = 25
  1269.  
  1270. Text_10.Name = "Text"
  1271. Text_10.Parent = Main
  1272. Text_10.BackgroundColor3 = Color3.new(0, 0, 0)
  1273. Text_10.BackgroundTransparency = 1
  1274. Text_10.Position = UDim2.new(0.460764706, 0, 0.65511024, 0)
  1275. Text_10.Size = UDim2.new(0, 200, 0, 50)
  1276. Text_10.Font = Enum.Font.Cartoon
  1277. Text_10.Text = "Btools"
  1278. Text_10.TextColor3 = Color3.new(1, 1, 1)
  1279. Text_10.TextSize = 24
  1280.  
  1281. Text_11.Name = "Text"
  1282. Text_11.Parent = Main
  1283. Text_11.BackgroundColor3 = Color3.new(0, 0, 0)
  1284. Text_11.BackgroundTransparency = 1
  1285. Text_11.Position = UDim2.new(0.460764706, 0, 0.184035838, 0)
  1286. Text_11.Size = UDim2.new(0, 200, 0, 50)
  1287. Text_11.Font = Enum.Font.Cartoon
  1288. Text_11.Text = "Arrest All"
  1289. Text_11.TextColor3 = Color3.new(1, 1, 1)
  1290. Text_11.TextSize = 24
  1291.  
  1292. ArrestAll.Name = "ArrestAll"
  1293. ArrestAll.Parent = Main
  1294. ArrestAll.BackgroundColor3 = Color3.new(0, 0, 0)
  1295. ArrestAll.BackgroundTransparency = 1
  1296. ArrestAll.BorderColor3 = Color3.new(1, 1, 1)
  1297. ArrestAll.BorderSizePixel = 0
  1298. ArrestAll.Position = UDim2.new(-0.420588136, 500, 0.193617016, 0)
  1299. ArrestAll.Size = UDim2.new(0, 121, 0, 44)
  1300.  
  1301. ArrestAllB.Name = "ArrestAllB"
  1302. ArrestAllB.Parent = ArrestAll
  1303. ArrestAllB.Active = false
  1304. ArrestAllB.BackgroundColor3 = Color3.new(0, 0, 0)
  1305. ArrestAllB.BackgroundTransparency = 0.5
  1306. ArrestAllB.BorderSizePixel = 0
  1307. ArrestAllB.Size = UDim2.new(0, 121, 0, 44)
  1308. ArrestAllB.Font = Enum.Font.Cartoon
  1309. ArrestAllB.Text = "Activate"
  1310. ArrestAllB.TextColor3 = Color3.new(1, 1, 1)
  1311. ArrestAllB.TextSize = 25
  1312.  
  1313. ClickTP.Name = "ClickTP"
  1314. ClickTP.Parent = Main
  1315. ClickTP.BackgroundColor3 = Color3.new(0, 0, 0)
  1316. ClickTP.BackgroundTransparency = 1
  1317. ClickTP.BorderColor3 = Color3.new(1, 1, 1)
  1318. ClickTP.BorderSizePixel = 0
  1319. ClickTP.Position = UDim2.new(-0.426470608, 500, 0.829980731, 0)
  1320. ClickTP.Size = UDim2.new(0, 121, 0, 44)
  1321.  
  1322. ClickTPOnB.Name = "ClickTPOnB"
  1323. ClickTPOnB.Parent = ClickTP
  1324. ClickTPOnB.Active = false
  1325. ClickTPOnB.BackgroundColor3 = Color3.new(0, 0, 0)
  1326. ClickTPOnB.BackgroundTransparency = 0.5
  1327. ClickTPOnB.BorderSizePixel = 0
  1328. ClickTPOnB.Size = UDim2.new(0, 121, 0, 44)
  1329. ClickTPOnB.Font = Enum.Font.Cartoon
  1330. ClickTPOnB.Text = "Activate"
  1331. ClickTPOnB.TextColor3 = Color3.new(1, 1, 1)
  1332. ClickTPOnB.TextSize = 25
  1333.  
  1334. Weapons.Name = "Weapons"
  1335. Weapons.Parent = Main
  1336. Weapons.BackgroundColor3 = Color3.new(0, 0, 0)
  1337. Weapons.BackgroundTransparency = 1
  1338. Weapons.BorderColor3 = Color3.new(1, 1, 1)
  1339. Weapons.BorderSizePixel = 0
  1340. Weapons.Position = UDim2.new(-0.423529416, 500, 0.345132232, 0)
  1341. Weapons.Size = UDim2.new(0, 121, 0, 44)
  1342.  
  1343. WepB.Name = "WepB"
  1344. WepB.Parent = Weapons
  1345. WepB.Active = false
  1346. WepB.BackgroundColor3 = Color3.new(0, 0, 0)
  1347. WepB.BackgroundTransparency = 0.5
  1348. WepB.BorderSizePixel = 0
  1349. WepB.Size = UDim2.new(0, 121, 0, 44)
  1350. WepB.Font = Enum.Font.Cartoon
  1351. WepB.Text = "Activate"
  1352. WepB.TextColor3 = Color3.new(1, 1, 1)
  1353. WepB.TextSize = 25
  1354.  
  1355. Text_12.Name = "Text"
  1356. Text_12.Parent = Main
  1357. Text_12.BackgroundColor3 = Color3.new(0, 0, 0)
  1358. Text_12.BackgroundTransparency = 1
  1359. Text_12.Position = UDim2.new(0.460764706, 0, 0.812135041, 0)
  1360. Text_12.Size = UDim2.new(0, 200, 0, 50)
  1361. Text_12.Font = Enum.Font.Cartoon
  1362. Text_12.Text = "Click Teleport"
  1363. Text_12.TextColor3 = Color3.new(1, 1, 1)
  1364. Text_12.TextSize = 24
  1365.  
  1366. Text_13.Name = "Text"
  1367. Text_13.Parent = Main
  1368. Text_13.BackgroundColor3 = Color3.new(0, 0, 0)
  1369. Text_13.BackgroundTransparency = 1
  1370. Text_13.Position = UDim2.new(0.460764706, 0, 0.335550994, 0)
  1371. Text_13.Size = UDim2.new(0, 200, 0, 50)
  1372. Text_13.Font = Enum.Font.Cartoon
  1373. Text_13.Text = "Weapons"
  1374. Text_13.TextColor3 = Color3.new(1, 1, 1)
  1375. Text_13.TextSize = 24
  1376.  
  1377. Text_14.Name = "Text"
  1378. Text_14.Parent = Main
  1379. Text_14.BackgroundColor3 = Color3.new(0, 0, 0)
  1380. Text_14.BackgroundTransparency = 1
  1381. Text_14.Position = UDim2.new(0.454882354, 0, 0.489820957, 0)
  1382. Text_14.Size = UDim2.new(0, 200, 0, 50)
  1383. Text_14.Font = Enum.Font.Cartoon
  1384. Text_14.Text = "Flying"
  1385. Text_14.TextColor3 = Color3.new(1, 1, 1)
  1386. Text_14.TextSize = 24
  1387.  
  1388. FlyingOn.Name = "FlyingOn"
  1389. FlyingOn.Parent = Main
  1390. FlyingOn.BackgroundColor3 = Color3.new(0, 0, 0)
  1391. FlyingOn.BackgroundTransparency = 1
  1392. FlyingOn.BorderColor3 = Color3.new(1, 1, 1)
  1393. FlyingOn.BorderSizePixel = 0
  1394. FlyingOn.Position = UDim2.new(-0.423529387, 500, 0.499402225, 0)
  1395. FlyingOn.Size = UDim2.new(0, 121, 0, 44)
  1396.  
  1397. FlyOnB.Name = "FlyOnB"
  1398. FlyOnB.Parent = FlyingOn
  1399. FlyOnB.Active = false
  1400. FlyOnB.BackgroundColor3 = Color3.new(0, 0, 0)
  1401. FlyOnB.BackgroundTransparency = 0.5
  1402. FlyOnB.BorderSizePixel = 0
  1403. FlyOnB.Size = UDim2.new(0, 121, 0, 44)
  1404. FlyOnB.Font = Enum.Font.Cartoon
  1405. FlyOnB.Text = "Turn On"
  1406. FlyOnB.TextColor3 = Color3.new(1, 1, 1)
  1407. FlyOnB.TextSize = 25
  1408.  
  1409. FlyingOff.Name = "FlyingOff"
  1410. FlyingOff.Parent = Main
  1411. FlyingOff.BackgroundColor3 = Color3.new(0, 0, 0)
  1412. FlyingOff.BackgroundTransparency = 1
  1413. FlyingOff.BorderColor3 = Color3.new(1, 1, 1)
  1414. FlyingOff.BorderSizePixel = 0
  1415. FlyingOff.Position = UDim2.new(-0.423529387, 500, 0.499402225, 0)
  1416. FlyingOff.Size = UDim2.new(0, 121, 0, 44)
  1417. FlyingOff.Visible = false
  1418.  
  1419. FlyOffB.Name = "FlyOffB"
  1420. FlyOffB.Parent = FlyingOff
  1421. FlyOffB.Active = false
  1422. FlyOffB.BackgroundColor3 = Color3.new(0, 0, 0)
  1423. FlyOffB.BackgroundTransparency = 0.5
  1424. FlyOffB.BorderSizePixel = 0
  1425. FlyOffB.Size = UDim2.new(0, 121, 0, 44)
  1426. FlyOffB.Font = Enum.Font.Cartoon
  1427. FlyOffB.Text = "Turn Off"
  1428. FlyOffB.TextColor3 = Color3.new(1, 1, 1)
  1429. FlyOffB.TextSize = 25
  1430.  
  1431. Btools.Name = "Btools"
  1432. Btools.Parent = Main
  1433. Btools.BackgroundColor3 = Color3.new(0, 0, 0)
  1434. Btools.BackgroundTransparency = 1
  1435. Btools.BorderColor3 = Color3.new(1, 1, 1)
  1436. Btools.BorderSizePixel = 0
  1437. Btools.Position = UDim2.new(-0.423529416, 500, 0.664691448, 0)
  1438. Btools.Size = UDim2.new(0, 121, 0, 44)
  1439.  
  1440. BtoolsOn.Name = "BtoolsOn"
  1441. BtoolsOn.Parent = Btools
  1442. BtoolsOn.Active = false
  1443. BtoolsOn.BackgroundColor3 = Color3.new(0, 0, 0)
  1444. BtoolsOn.BackgroundTransparency = 0.5
  1445. BtoolsOn.BorderSizePixel = 0
  1446. BtoolsOn.Size = UDim2.new(0, 121, 0, 44)
  1447. BtoolsOn.Font = Enum.Font.Cartoon
  1448. BtoolsOn.Text = "Activate"
  1449. BtoolsOn.TextColor3 = Color3.new(1, 1, 1)
  1450. BtoolsOn.TextSize = 25
  1451.  
  1452. Open.Name = "Open"
  1453. Open.Parent = VillanityGUIV1
  1454. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  1455. Open.BackgroundTransparency = 1
  1456. Open.BorderColor3 = Color3.new(1, 1, 1)
  1457. Open.BorderSizePixel = 0
  1458. Open.Position = UDim2.new(0.0140581066, 0, 0.795202971, 0)
  1459. Open.Size = UDim2.new(0, 121, 0, 44)
  1460. Open.Visible = false
  1461.  
  1462. Frame_12.Parent = Open
  1463. Frame_12.BackgroundColor3 = Color3.new(1, 1, 1)
  1464. Frame_12.BackgroundTransparency = 0.30000001192093
  1465. Frame_12.BorderSizePixel = 0
  1466. Frame_12.Position = UDim2.new(-0.0495867766, 0, -0.136363626, 0)
  1467. Frame_12.Size = UDim2.new(0, 133, 0, 6)
  1468.  
  1469. Frame_13.Parent = Open
  1470. Frame_13.BackgroundColor3 = Color3.new(1, 1, 1)
  1471. Frame_13.BackgroundTransparency = 0.30000001192093
  1472. Frame_13.BorderSizePixel = 0
  1473. Frame_13.Position = UDim2.new(-0.0495867766, 0, 1, 0)
  1474. Frame_13.Size = UDim2.new(0, 133, 0, 6)
  1475.  
  1476. Frame_14.Parent = Open
  1477. Frame_14.BackgroundColor3 = Color3.new(1, 1, 1)
  1478. Frame_14.BackgroundTransparency = 0.30000001192093
  1479. Frame_14.BorderSizePixel = 0
  1480. Frame_14.Position = UDim2.new(1, 0, 0, 0)
  1481. Frame_14.Size = UDim2.new(0, 6, 0, 44)
  1482.  
  1483. Frame_15.Parent = Open
  1484. Frame_15.BackgroundColor3 = Color3.new(1, 1, 1)
  1485. Frame_15.BackgroundTransparency = 0.30000001192093
  1486. Frame_15.BorderSizePixel = 0
  1487. Frame_15.Position = UDim2.new(-0.0495867729, 0, 0, 0)
  1488. Frame_15.Size = UDim2.new(0, 6, 0, 44)
  1489.  
  1490. OpenButton.Name = "OpenButton"
  1491. OpenButton.Parent = Open
  1492. OpenButton.Active = false
  1493. OpenButton.BackgroundColor3 = Color3.new(0, 0, 0)
  1494. OpenButton.BackgroundTransparency = 0.5
  1495. OpenButton.BorderSizePixel = 0
  1496. OpenButton.Size = UDim2.new(0, 121, 0, 44)
  1497. OpenButton.Font = Enum.Font.Cartoon
  1498. OpenButton.Text = "Open"
  1499. OpenButton.TextColor3 = Color3.new(1, 1, 1)
  1500. OpenButton.TextSize = 25
  1501. -- Scripts:
  1502. function SCRIPT_KVGQ79_FAKESCRIPT() -- VillanityGUIV1.DragGUI
  1503. getfenv().script = Instance.new('Script', VillanityGUIV1)
  1504.  
  1505. for _,v in ipairs(script.Parent:GetDescendants()) do
  1506. if not v:IsA("LocalScript") then
  1507. v.Draggable = true
  1508. end
  1509. end
  1510.  
  1511. end
  1512. coroutine.resume(coroutine.create(SCRIPT_KVGQ79_FAKESCRIPT))
  1513.  
  1514. CloseButton.MouseButton1Down:connect(function()
  1515. Main.Visible = false
  1516. Open.Visible = true
  1517. end)
  1518.  
  1519. OpenButton.MouseButton1Down:connect(function()
  1520. Main.Visible = true
  1521. Open.Visible = false
  1522. end)
  1523.  
  1524. KAOnB.MouseButton1Down:connect(function()
  1525. wait(0.1)
  1526. Main.KillAuraOn.Visible = false
  1527. Main.KillAuraOff.Visible = true
  1528.  
  1529. mainRemotes = game.ReplicatedStorage
  1530. meleeRemote = mainRemotes['meleeEvent']
  1531.  
  1532. killAura = true
  1533.  
  1534. contextactionservice = game.ContextActionService
  1535.  
  1536. function toggleKillAura(actionName, inputState, inputObject)
  1537. print('Doing the action : ' .. actionName)
  1538. if inputState == Enum.UserInputState.Begin then
  1539. if killAura == true then
  1540. killAura = false
  1541. else
  1542. killAura = true
  1543. end
  1544. end
  1545. end
  1546.  
  1547. contextactionservice:BindAction('ToggleKillAura', toggleKillAura, false, Enum.KeyCode.K)
  1548.  
  1549. while wait() do
  1550. if killAura == true then
  1551. for _, plr in pairs (game:GetService('Players'):GetChildren()) do
  1552. if plr.Name ~= game.Players.LocalPlayer.Name then
  1553. meleeRemote:FireServer(plr)
  1554. end
  1555. end
  1556. end
  1557. end
  1558. end)
  1559.  
  1560. KAOffB.MouseButton1Down:connect(function()
  1561. wait(0.1)
  1562. Main.KillAuraOff.Visible = false
  1563. Main.KillAuraOn.Visible = true
  1564.  
  1565. mainRemotes = game.ReplicatedStorage
  1566. meleeRemote = mainRemotes['meleeEvent']
  1567.  
  1568. killAura = false
  1569.  
  1570. contextactionservice = game.ContextActionService
  1571.  
  1572. function toggleKillAura(actionName, inputState, inputObject)
  1573. print('Doing the action : ' .. actionName)
  1574. if inputState == Enum.UserInputState.Begin then
  1575. if killAura == true then
  1576. killAura = false
  1577. else
  1578. killAura = false
  1579. end
  1580. end
  1581. end
  1582.  
  1583. contextactionservice:BindAction('ToggleKillAura', toggleKillAura, false, Enum.KeyCode.K)
  1584.  
  1585. while wait() do
  1586. if killAura == true then
  1587. for _, plr in pairs (game:GetService('Players'):GetChildren()) do
  1588. if plr.Name ~= game.Players.LocalPlayer.Name then
  1589. meleeRemote:FireServer(plr)
  1590. end
  1591. end
  1592. end
  1593. end
  1594. end)
  1595.  
  1596. GMOnB.MouseButton1Down:connect(function()
  1597. wait(0.1)
  1598. Main.GodModeOn.Visible = false
  1599. Main.GodModeOff.Visible = true
  1600.  
  1601. lplayer = game:GetService("Players").LocalPlayer
  1602.  
  1603. lplayer.Character.Humanoid.Name = 1
  1604. local l = lplayer.Character["1"]:Clone()
  1605. l.Parent = lplayer.Character
  1606. l.Name = "Humanoid"
  1607. wait(0.1)
  1608. lplayer.Character["1"]:Destroy()
  1609. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  1610. lplayer.Character.Animate.Disabled = true
  1611. wait(0.1)
  1612. lplayer.Character.Animate.Disabled = false
  1613. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  1614. end)
  1615.  
  1616. GMOffB.MouseButton1Down:connect(function()
  1617. wait(0.1)
  1618. Main.GodModeOff.Visible = false
  1619. Main.GodModeOn.Visible = true
  1620.  
  1621. lplayer.Character.Humanoid.Health = 0
  1622. local a1 = Instance.new("Model", workspace)
  1623. local a2 = Instance.new("Part", a1)
  1624. a2.CanCollide = true
  1625. a2.Anchored = true
  1626. a2.CFrame = CFrame.new(10000, 10000, 10000)
  1627. a2.Name = "Torso"
  1628. local a3 = Instance.new("Humanoid", a1)
  1629. a3.MaxHealth=100;a3.Health=100
  1630. game.Players.LocalPlayer.Character = a1
  1631. a3.Health=0
  1632. end)
  1633.  
  1634. NCOnB.MouseButton1Down:connect(function()
  1635. wait(0.1)
  1636. Main.NoclipOn.Visible = false
  1637. Main.NoclipOff.Visible = true
  1638.  
  1639. noclip = true
  1640. game:GetService('RunService').Stepped:connect(function()
  1641. if noclip then
  1642. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  1643. end
  1644. end)
  1645. end)
  1646.  
  1647. NCOffB.MouseButton1Down:connect(function()
  1648. wait(0.1)
  1649. Main.NoclipOff.Visible = false
  1650. Main.NoclipOn.Visible = true
  1651.  
  1652. noclip = false
  1653. game:GetService('RunService').Stepped:connect(function()
  1654. if noclip then
  1655. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  1656. end
  1657. end)
  1658. end)
  1659.  
  1660. CAOnB.MouseButton1Down:connect(function()
  1661. Main.ClickArrest.Visible = false
  1662. Main.ClickArrestOn.Visible = true
  1663. local mouse = game.Players.LocalPlayer:GetMouse()
  1664. local arrestEvent = game.Workspace.Remote.arrest
  1665. mouse.Button1Down:connect(function()
  1666. local obj = mouse.Target
  1667. local response = arrestEvent:InvokeServer(obj)
  1668. end)
  1669. end)
  1670.  
  1671. GuardB.MouseButton1Down:connect(function()
  1672. wait(0.1)
  1673. Workspace.Remote.TeamEvent:FireServer("Bright blue")
  1674. end)
  1675.  
  1676. InmateB.MouseButton1Down:connect(function()
  1677. wait(0.1)
  1678. Workspace.Remote.TeamEvent:FireServer("Bright orange")
  1679. end)
  1680.  
  1681. KillAllB.MouseButton1Down:connect(function()
  1682. wait(0.1)
  1683. local Player = game.Players.LocalPlayer
  1684. local prevCFrame = Player.Character.HumanoidRootPart.CFrame
  1685. for i,v in pairs(game.Players:GetChildren()) do
  1686. if v.Name ~= game.Players.LocalPlayer.Name then
  1687. if not v.Character:FindFirstChild("ForceField") then
  1688. local playerName = v.Name
  1689. local PlayerToKill = game.Players:FindFirstChild(playerName)
  1690.  
  1691. repeat
  1692. if Player.Character.Humanoid.Sit == true then
  1693. Player.Character.Humanoid.Sit = false
  1694. end
  1695. Player.Character.HumanoidRootPart.CFrame = PlayerToKill.Character.HumanoidRootPart.CFrame
  1696. for h = 1,10 do
  1697. game.ReplicatedStorage.meleeEvent:FireServer(PlayerToKill)
  1698. end
  1699. game:GetService("RunService").RenderStepped:wait()
  1700. until PlayerToKill.Character.Humanoid.Health == 0 or v == nil
  1701.  
  1702. Player.Character.HumanoidRootPart.CFrame = prevCFrame
  1703. end
  1704. end
  1705. end
  1706. end)
  1707.  
  1708. ArrestAllB.MouseButton1Down:connect(function()
  1709. wait(0.1)
  1710. local Player = game.Players.LocalPlayer
  1711. local cpos = Player.Character.HumanoidRootPart.CFrame
  1712. for i,v in pairs(game.Teams.Criminals:GetPlayers()) do
  1713. if v.Name ~= Player.Name then
  1714. local i = 10
  1715. repeat
  1716. wait()
  1717. i = i-1
  1718. game.Workspace.Remote.arrest:InvokeServer(v.Character.HumanoidRootPart)
  1719. Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  1720. until i == 0
  1721. end
  1722. end
  1723. end)
  1724.  
  1725. WepB.MouseButton1Down:connect(function()
  1726. wait(0.1)
  1727. local Weapon = {"AK-47"}
  1728. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  1729. if v.Name == Weapon[1] then
  1730. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  1731. end
  1732. end
  1733.  
  1734. local Weapon = {"Remington 870"}
  1735. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  1736. if v.Name == Weapon[1] then
  1737. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  1738. end
  1739. end
  1740.  
  1741. local Weapon = {"M9"}
  1742. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  1743. if v.Name == Weapon[1] then
  1744. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  1745. end
  1746. end
  1747. end)
  1748.  
  1749. FlyOnB.MouseButton1Down:connect(function()
  1750. wait(0.1)
  1751. Main.FlyingOn.Visible = false
  1752. Main.FlyingOff.Visible = true
  1753. Fly = true
  1754. local mouse=game.Players.LocalPlayer:GetMouse''
  1755. localplayer=game.Players.LocalPlayer
  1756. game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart")
  1757. local torso = game.Players.LocalPlayer.Character.HumanoidRootPart
  1758. local speed = 3
  1759. local keys = {a=false,d=false,w=false,s=false}
  1760. local e1
  1761. local e2
  1762. local function start()
  1763. local pos = Instance.new("BodyPosition",torso)
  1764. local gyro = Instance.new("BodyGyro",torso)
  1765. pos.Name="EPIXPOS"
  1766. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1767. pos.position = torso.Position
  1768. gyro.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  1769. gyro.cframe = torso.CFrame
  1770. repeat
  1771. wait()
  1772. localplayer.Character.Humanoid.PlatformStand=true
  1773. local new=gyro.cframe - gyro.cframe.p + pos.position
  1774. if not keys.w and not keys.s and not keys.a and not keys.d then
  1775. speed = 3
  1776. end
  1777. if keys.w then
  1778. new = new + workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  1779. speed = speed+0.00
  1780. end
  1781. if keys.s then
  1782. new = new - workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  1783. speed = speed+0.00
  1784. end
  1785. if keys.d then
  1786. new = new * CFrame.new(speed,0,0)
  1787. speed = speed+0.00
  1788. end
  1789. if keys.a then
  1790. new = new * CFrame.new(-speed,0,0)
  1791. speed = speed+0.00
  1792. end
  1793. if speed>3 then
  1794. speed = 3
  1795. end
  1796. pos.position=new.p
  1797. if keys.w then
  1798. gyro.cframe = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(-math.rad(speed*15),0,0)
  1799. elseif keys.s then
  1800. gyro.cframe = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(math.rad(speed*15),0,0)
  1801. else
  1802. gyro.cframe = workspace.CurrentCamera.CoordinateFrame
  1803. end
  1804. until not Fly
  1805. if gyro then gyro:Destroy() end
  1806. if pos then pos:Destroy() end
  1807. flying = false
  1808. localplayer.Character.Humanoid.PlatformStand = false
  1809. speed = 5
  1810. end
  1811. e1=mouse.KeyDown:connect(function(key)
  1812. if not torso or not torso.Parent then flying=false e1:disconnect() e2:disconnect() return end
  1813. if key=="w" then
  1814. keys.w=true
  1815. elseif key=="s" then
  1816. keys.s=true
  1817. elseif key=="a" then
  1818. keys.a=true
  1819. elseif key=="d" then
  1820. keys.d=true
  1821. end
  1822. end)
  1823. e2=mouse.KeyUp:connect(function(key)
  1824. if key=="w" then
  1825. keys.w=false
  1826. elseif key=="s" then
  1827. keys.s=false
  1828. elseif key=="a" then
  1829. keys.a=false
  1830. elseif key=="d" then
  1831. keys.d=false
  1832. end
  1833. end)
  1834. start()
  1835. end)
  1836.  
  1837. FlyOffB.MouseButton1Down:connect(function()
  1838. wait(0.1)
  1839. Main.FlyingOff.Visible = false
  1840. Main.FlyingOn.Visible = true
  1841. Fly = false
  1842. local mouse=game.Players.LocalPlayer:GetMouse''
  1843. localplayer=game.Players.LocalPlayer
  1844. game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart")
  1845. local torso = game.Players.LocalPlayer.Character.HumanoidRootPart
  1846. local speed=0
  1847. local keys={a=false,d=false,w=false,s=false}
  1848. local e1
  1849. local e2
  1850. local function start()
  1851. local pos = Instance.new("BodyPosition",torso)
  1852. local gyro = Instance.new("BodyGyro",torso)
  1853. pos.Name="EPIXPOS"
  1854. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1855. pos.position = torso.Position
  1856. gyro.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  1857. gyro.cframe = torso.CFrame
  1858. repeat
  1859. wait()
  1860. localplayer.Character.Humanoid.PlatformStand=true
  1861. local new=gyro.cframe - gyro.cframe.p + pos.position
  1862. if not keys.w and not keys.s and not keys.a and not keys.d then
  1863. speed=1
  1864. end
  1865. if keys.w then
  1866. new = new + workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  1867. speed=speed+0.01
  1868. end
  1869. if keys.s then
  1870. new = new - workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  1871. speed=speed+0.01
  1872. end
  1873. if keys.d then
  1874. new = new * CFrame.new(speed,0,0)
  1875. speed=speed+0.01
  1876. end
  1877. if keys.a then
  1878. new = new * CFrame.new(-speed,0,0)
  1879. speed=speed+0.01
  1880. end
  1881. if speed>5 then
  1882. speed=5
  1883. end
  1884. pos.position=new.p
  1885. if keys.w then
  1886. gyro.cframe = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(-math.rad(speed*15),0,0)
  1887. elseif keys.s then
  1888. gyro.cframe = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(math.rad(speed*15),0,0)
  1889. else
  1890. gyro.cframe = workspace.CurrentCamera.CoordinateFrame
  1891. end
  1892. until not Fly
  1893. if gyro then gyro:Destroy() end
  1894. if pos then pos:Destroy() end
  1895. flying=false
  1896. localplayer.Character.Humanoid.PlatformStand=false
  1897. speed=0
  1898. end
  1899. e1=mouse.KeyDown:connect(function(key)
  1900. if not torso or not torso.Parent then flying=false e1:disconnect() e2:disconnect() return end
  1901. if key=="w" then
  1902. keys.w=true
  1903. elseif key=="s" then
  1904. keys.s=true
  1905. elseif key=="a" then
  1906. keys.a=true
  1907. elseif key=="d" then
  1908. keys.d=true
  1909. end
  1910. end)
  1911. e2=mouse.KeyUp:connect(function(key)
  1912. if key=="w" then
  1913. keys.w=false
  1914. elseif key=="s" then
  1915. keys.s=false
  1916. elseif key=="a" then
  1917. keys.a=false
  1918. elseif key=="d" then
  1919. keys.d=false
  1920. end
  1921. end)
  1922. start()
  1923. end)
  1924.  
  1925. BtoolsOn.MouseButton1Down:connect(function()
  1926. wait(0.1)
  1927. local tool1 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  1928. local tool2 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  1929. local tool3 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  1930. tool1.BinType = "Clone"
  1931. tool2.BinType = "Hammer"
  1932. tool3.BinType = "Grab"
  1933. end)
  1934.  
  1935. ClickTPOnB.MouseButton1Down:connect(function()
  1936. wait(0.1)
  1937. mouse = game.Players.LocalPlayer:GetMouse()
  1938. tool = Instance.new("Tool")
  1939. tool.RequiresHandle = false
  1940. tool.Name = "Click Teleport"
  1941. tool.Activated:connect(function()
  1942. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  1943. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  1944. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  1945. end)
  1946. tool.Parent = game.Players.LocalPlayer.Backpack
  1947. end)
  1948. --Viianity end
  1949. --Viianity end
  1950. --Viianity end
  1951. --Viianity end
  1952. --Viianity end
  1953. --Viianity end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement