Advertisement
Guest User

DeVGUI 1.1 By RedRiderCz

a guest
Apr 2nd, 2020
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- By RedRiderCz
  2.  
  3. local DeVGUI = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local btools = Instance.new("TextButton")
  6. local jumppower = Instance.new("TextButton")
  7. local speed = Instance.new("TextButton")
  8. local comingsoon1 = Instance.new("TextButton")
  9. local comingsoon2 = Instance.new("TextButton")
  10. local comingsoon3 = Instance.new("TextButton")
  11. local comingsoon4 = Instance.new("TextButton")
  12. local comingsoon5 = Instance.new("TextButton")
  13. local NameGui = Instance.new("TextLabel")
  14. local close = Instance.new("TextButton")
  15. local Credits = Instance.new("TextLabel")
  16. local Close = Instance.new("Frame")
  17. local OpenRoundStyle = Instance.new("Frame")
  18. local OpenButton = Instance.new("TextButton")
  19.  
  20. --Properties:
  21.  
  22. DeVGUI.Name = "DeVGUI"
  23. DeVGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  24. DeVGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  25.  
  26. Main.Name = "Main"
  27. Main.Parent = DeVGUI
  28. Main.BackgroundColor3 = Color3.fromRGB(66, 66, 66)
  29. Main.BorderColor3 = Color3.fromRGB(38, 38, 38)
  30. Main.BorderSizePixel = 3
  31. Main.Position = UDim2.new(0.393248171, 0, 0.335863382, 0)
  32. Main.Size = UDim2.new(0, 478, 0, 263)
  33. Main.Active = true
  34. Main.Draggable = true
  35.  
  36.  
  37. btools.Name = "btools"
  38. btools.Parent = Main
  39. btools.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  40. btools.BorderColor3 = Color3.fromRGB(38, 38, 38)
  41. btools.BorderSizePixel = 0
  42. btools.Position = UDim2.new(0.0740556568, 0, 0.203463197, 0)
  43. btools.Size = UDim2.new(0, 107, 0, 40)
  44. btools.Font = Enum.Font.SourceSans
  45. btools.Text = "BTools"
  46. btools.TextColor3 = Color3.fromRGB(255, 255, 255)
  47. btools.TextSize = 14.000
  48. btools.MouseButton1Down:connect(function()
  49. a = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  50. a.BinType = 2
  51. b = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  52. b.BinType = 3
  53. c = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  54. c.BinType = 4
  55. end)
  56.  
  57. jumppower.Name = "jumppower"
  58. jumppower.Parent = Main
  59. jumppower.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  60. jumppower.BorderColor3 = Color3.fromRGB(38, 38, 38)
  61. jumppower.BorderSizePixel = 0
  62. jumppower.Position = UDim2.new(0.387843698, 0, 0.203463197, 0)
  63. jumppower.Size = UDim2.new(0, 107, 0, 40)
  64. jumppower.Font = Enum.Font.SourceSans
  65. jumppower.Text = "JumpPower 80"
  66. jumppower.TextColor3 = Color3.fromRGB(255, 255, 255)
  67. jumppower.TextSize = 14.000
  68. jumppower.MouseButton1Down:connect(function()
  69. local jump = 80
  70.  
  71. while wait() do
  72. game.Players.LocalPlayer.Character.Humanoid.JumpPower = jump
  73. end
  74. end)
  75.  
  76.  
  77. speed.Name = "speed "
  78. speed.Parent = Main
  79. speed.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  80. speed.BorderColor3 = Color3.fromRGB(38, 38, 38)
  81. speed.BorderSizePixel = 0
  82. speed.Position = UDim2.new(0.701631725, 0, 0.203463197, 0)
  83. speed.Size = UDim2.new(0, 107, 0, 40)
  84. speed.Font = Enum.Font.SourceSans
  85. speed.Text = "Speed 100"
  86. speed.TextColor3 = Color3.fromRGB(255, 255, 255)
  87. speed.TextSize = 14.000
  88. speed.MouseButton1Down:connect(function()
  89. local speed = 100
  90.  
  91. while wait() do
  92. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = speed
  93. end
  94. end)
  95.  
  96.  
  97. comingsoon1.Name = "prisonlifegui"
  98. comingsoon1.Parent = Main
  99. comingsoon1.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  100. comingsoon1.BorderSizePixel = 0
  101. comingsoon1.Position = UDim2.new(0.387843698, 0, 0.467532486, 0)
  102. comingsoon1.Size = UDim2.new(0, 107, 0, 40)
  103. comingsoon1.Font = Enum.Font.SourceSans
  104. comingsoon1.Text = "PL OP GUI"
  105. comingsoon1.TextColor3 = Color3.fromRGB(255, 255, 255)
  106. comingsoon1.TextSize = 14.000
  107. comingsoon1.MouseButton1Down:connect(function()
  108. -- Objects
  109.  
  110. local PrisonGui = Instance.new("ScreenGui")
  111. local Main = Instance.new("Frame")
  112. local Title = Instance.new("TextLabel")
  113. local TitleBar = Instance.new("TextLabel")
  114. local ObGuns = Instance.new("TextButton")
  115. local Close = Instance.new("TextButton")
  116. local KillAll = Instance.new("TextButton")
  117. local TaseBypass = Instance.new("TextButton")
  118. local RemoveDoors = Instance.new("TextButton")
  119. local Btools = Instance.new("TextButton")
  120. local BeNeutral = Instance.new("TextButton")
  121. local ModGun = Instance.new("TextButton")
  122. local ForceCgui = Instance.new("Frame")
  123. local ComSeperateBar = Instance.new("TextLabel")
  124. local InsertUser = Instance.new("TextBox")
  125. local UserHolder = Instance.new("TextLabel")
  126. local CrimTitle = Instance.new("TextLabel")
  127. local CrimTitleBar = Instance.new("TextLabel")
  128. local TextButton = Instance.new("TextButton")
  129. local CrimHideButton = Instance.new("TextButton")
  130. local TPshow = Instance.new("TextButton")
  131. local LocalCommands = Instance.new("Frame")
  132. local LocalCMD_Title = Instance.new("TextLabel")
  133. local NexusTPbut = Instance.new("TextButton")
  134. local CrimBaseTPbut = Instance.new("TextButton")
  135. local GuardAreaTPbut = Instance.new("TextButton")
  136. local FLY = Instance.new("TextButton")
  137. local NWalk = Instance.new("TextButton")
  138. local Njump = Instance.new("TextButton")
  139. local tfJump = Instance.new("TextButton")
  140. local Respawn = Instance.new("TextButton")
  141. local tfWalk = Instance.new("TextButton")
  142. local LocalCMD_BarTitle = Instance.new("TextLabel")
  143. local TheLocal = Instance.new("TextButton")
  144. local CrimG = Instance.new("TextButton")
  145. local tpgui = Instance.new("Frame")
  146. local TPtileBar = Instance.new("TextLabel")
  147. local TPYEET = Instance.new("TextButton")
  148. local UserHolderTP = Instance.new("TextLabel")
  149. local InsertUserTP = Instance.new("TextBox")
  150. local TpTitle = Instance.new("TextLabel")
  151. local RightSepBarTp = Instance.new("TextLabel")
  152. local TpHideButton = Instance.new("TextButton")
  153. local AmokahsLogo = Instance.new("ImageLabel")
  154. local SuperPunch = Instance.new("TextButton")
  155. local KillAura = Instance.new("TextButton")
  156. local BeCriminal = Instance.new("TextButton")
  157. local BeGuard = Instance.new("TextButton")
  158. local BeInmate = Instance.new("TextButton")
  159. local ArrestAll = Instance.new("TextButton")
  160. local InvGuns = Instance.new("TextButton")
  161. local CrimPunch = Instance.new("TextButton")
  162. local Trans = Instance.new("TextButton")
  163. local Open = Instance.new("Frame")
  164. local OpenGUI = Instance.new("TextButton")
  165. local Credit = Instance.new("TextLabel")
  166. local Dino = Instance.new("TextLabel")
  167. local KA = Instance.new("Frame")
  168. local NameOfKa = Instance.new("TextLabel")
  169. local TrueOrFalse = Instance.new("TextLabel")
  170. local TeamGUIOC = Instance.new("Frame")
  171. local TeamOPorCL = Instance.new("TextButton")
  172. local TeamMain = Instance.new("Frame")
  173. local TextLabel = Instance.new("TextLabel")
  174. local TextLabel_2 = Instance.new("TextLabel")
  175. local SOG = Instance.new("TextButton")
  176. local SOC = Instance.new("TextButton")
  177. local SOI = Instance.new("TextButton")
  178. local Disable = Instance.new("TextButton")
  179. local Apart = Instance.new("Part")
  180.  
  181. Apart.Name = "PlrsPos"
  182. Apart.Parent = workspace
  183. Apart.Anchored = true
  184. Apart.Archivable = true
  185. Apart.CFrame = CFrame.new(9e99, 9e99, 9e99)
  186.  
  187. -- Properties
  188.  
  189. PrisonGui.Name = "PrisonGui"
  190. PrisonGui.Parent = game:GetService("Players").LocalPlayer.PlayerGui
  191.  
  192. Main.Name = "Main"
  193. Main.Parent = PrisonGui
  194. Main.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  195. Main.BorderSizePixel = 0
  196. Main.Position = UDim2.new(0.345, 0,2.204, 0)
  197. Main.Size = UDim2.new(0, 338, 0, 301)
  198. Main.Visible = false
  199.  
  200. Title.Name = "Title"
  201. Title.Parent = Main
  202. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  203. Title.BackgroundTransparency = 1
  204. Title.BorderSizePixel = 0
  205. Title.Position = UDim2.new(0.136094674, 0, 0.00996677764, 0)
  206. Title.Size = UDim2.new(0, 162, 0, 31)
  207. Title.Font = Enum.Font.SourceSansLight
  208. Title.FontSize = Enum.FontSize.Size14
  209. Title.Text = "Prison Life v2.0.2 GUI"
  210. Title.TextColor3 = Color3.new(0.807843, 0.807843, 0.807843)
  211. Title.TextScaled = true
  212. Title.TextStrokeTransparency = 0
  213. Title.TextWrapped = true
  214.  
  215. TitleBar.Name = "TitleBar"
  216. TitleBar.Parent = Main
  217. TitleBar.BackgroundColor3 = Color3.new(0, 0, 0)
  218. TitleBar.BackgroundTransparency = 0.5
  219. TitleBar.BorderSizePixel = 0
  220. TitleBar.Position = UDim2.new(0, 0, 0.116104871, 0)
  221. TitleBar.Size = UDim2.new(0, 338, 0, 6)
  222. TitleBar.Font = Enum.Font.SourceSans
  223. TitleBar.FontSize = Enum.FontSize.Size14
  224. TitleBar.Text = ""
  225. TitleBar.TextColor3 = Color3.new(0, 0, 0)
  226.  
  227. ObGuns.Name = "ObGuns"
  228. ObGuns.Parent = Main
  229. ObGuns.BackgroundColor3 = Color3.new(1, 1, 1)
  230. ObGuns.BackgroundTransparency = 0.5
  231. ObGuns.BorderSizePixel = 0
  232. ObGuns.Position = UDim2.new(0.0147928996, 0, 0.16104874, 0)
  233. ObGuns.Size = UDim2.new(0, 159, 0, 22)
  234. ObGuns.Font = Enum.Font.SourceSans
  235. ObGuns.FontSize = Enum.FontSize.Size14
  236. ObGuns.Text = "OBTAIN GUNS"
  237. ObGuns.TextColor3 = Color3.new(1, 1, 1)
  238. ObGuns.TextScaled = true
  239. ObGuns.TextStrokeTransparency = 0
  240. ObGuns.TextWrapped = true
  241.  
  242. Close.Name = "Close"
  243. Close.Parent = Main
  244. Close.BackgroundColor3 = Color3.new(1, 0.34902, 0.34902)
  245. Close.BackgroundTransparency = 0.30000001192093
  246. Close.BorderSizePixel = 0
  247. Close.Position = UDim2.new(0.908284009, 0, 0.0224719122, 0)
  248. Close.Size = UDim2.new(0, 24, 0, 24)
  249. Close.Font = Enum.Font.SourceSans
  250. Close.FontSize = Enum.FontSize.Size14
  251. Close.Text = ""
  252. Close.TextColor3 = Color3.new(0, 0, 0)
  253.  
  254. KillAll.Name = "KillAll"
  255. KillAll.Parent = Main
  256. KillAll.BackgroundColor3 = Color3.new(1, 1, 1)
  257. KillAll.BackgroundTransparency = 0.5
  258. KillAll.BorderSizePixel = 0
  259. KillAll.Position = UDim2.new(0.0177514795, 0, 0.265917659, 0)
  260. KillAll.Size = UDim2.new(0, 159, 0, 22)
  261. KillAll.Font = Enum.Font.SourceSans
  262. KillAll.FontSize = Enum.FontSize.Size14
  263. KillAll.Text = "KILL ALL"
  264. KillAll.TextColor3 = Color3.new(1, 1, 1)
  265. KillAll.TextScaled = true
  266. KillAll.TextStrokeTransparency = 0
  267. KillAll.TextWrapped = true
  268.  
  269. TaseBypass.Name = "TaseBypass"
  270. TaseBypass.Parent = Main
  271. TaseBypass.BackgroundColor3 = Color3.new(1, 1, 1)
  272. TaseBypass.BackgroundTransparency = 0.5
  273. TaseBypass.BorderSizePixel = 0
  274. TaseBypass.Position = UDim2.new(0.0177514795, 0, 0.370786548, 0)
  275. TaseBypass.Size = UDim2.new(0, 159, 0, 22)
  276. TaseBypass.Font = Enum.Font.SourceSans
  277. TaseBypass.FontSize = Enum.FontSize.Size14
  278. TaseBypass.Text = "TASER BYPASS"
  279. TaseBypass.TextColor3 = Color3.new(1, 1, 1)
  280. TaseBypass.TextScaled = true
  281. TaseBypass.TextStrokeTransparency = 0
  282. TaseBypass.TextWrapped = true
  283.  
  284. RemoveDoors.Name = "RemoveDoors"
  285. RemoveDoors.Parent = Main
  286. RemoveDoors.BackgroundColor3 = Color3.new(1, 1, 1)
  287. RemoveDoors.BackgroundTransparency = 0.5
  288. RemoveDoors.BorderSizePixel = 0
  289. RemoveDoors.Position = UDim2.new(0.0177514795, 0, 0.483146131, 0)
  290. RemoveDoors.Size = UDim2.new(0, 158, 0, 22)
  291. RemoveDoors.Font = Enum.Font.SourceSans
  292. RemoveDoors.FontSize = Enum.FontSize.Size14
  293. RemoveDoors.Text = "REMOVE ALL DOORS"
  294. RemoveDoors.TextColor3 = Color3.new(1, 1, 1)
  295. RemoveDoors.TextScaled = true
  296. RemoveDoors.TextStrokeTransparency = 0
  297. RemoveDoors.TextWrapped = true
  298.  
  299. Btools.Name = "Btools"
  300. Btools.Parent = Main
  301. Btools.BackgroundColor3 = Color3.new(1, 1, 1)
  302. Btools.BackgroundTransparency = 0.5
  303. Btools.BorderSizePixel = 0
  304. Btools.Position = UDim2.new(0.0177514795, 0, 0.58801502, 0)
  305. Btools.Size = UDim2.new(0, 159, 0, 22)
  306. Btools.Font = Enum.Font.SourceSans
  307. Btools.FontSize = Enum.FontSize.Size14
  308. Btools.Text = "BTOOLS"
  309. Btools.TextColor3 = Color3.new(1, 1, 1)
  310. Btools.TextScaled = true
  311. Btools.TextStrokeTransparency = 0
  312. Btools.TextWrapped = true
  313.  
  314. BeNeutral.Name = "BeNeutral"
  315. BeNeutral.Parent = Main
  316. BeNeutral.BackgroundColor3 = Color3.new(1, 1, 1)
  317. BeNeutral.BackgroundTransparency = 0.5
  318. BeNeutral.BorderSizePixel = 0
  319. BeNeutral.Position = UDim2.new(0.756781578, 0, 0.696629226, 0)
  320. BeNeutral.Size = UDim2.new(0, 74, 0, 22)
  321. BeNeutral.Font = Enum.Font.SourceSans
  322. BeNeutral.FontSize = Enum.FontSize.Size14
  323. BeNeutral.Text = "NEUTRAL"
  324. BeNeutral.TextColor3 = Color3.new(1, 1, 1)
  325. BeNeutral.TextScaled = true
  326. BeNeutral.TextStrokeTransparency = 0
  327. BeNeutral.TextWrapped = true
  328.  
  329. ModGun.Name = "ModGun"
  330. ModGun.Parent = Main
  331. ModGun.BackgroundColor3 = Color3.new(1, 1, 1)
  332. ModGun.BackgroundTransparency = 0.5
  333. ModGun.BorderSizePixel = 0
  334. ModGun.Position = UDim2.new(0.0177514795, 0, 0.801498115, 0)
  335. ModGun.Size = UDim2.new(0, 325, 0, 22)
  336. ModGun.Font = Enum.Font.SourceSans
  337. ModGun.FontSize = Enum.FontSize.Size14
  338. ModGun.Text = "MOD YOUR GUN (Hold the item first)"
  339. ModGun.TextColor3 = Color3.new(1, 1, 1)
  340. ModGun.TextScaled = true
  341. ModGun.TextStrokeTransparency = 0
  342. ModGun.TextWrapped = true
  343.  
  344. ForceCgui.Name = "ForceCgui"
  345. ForceCgui.Parent = Main
  346. ForceCgui.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  347. ForceCgui.BorderSizePixel = 0
  348. ForceCgui.Position = UDim2.new(1, 0, 0.215946838, 0)
  349. ForceCgui.Size = UDim2.new(0, 155, 0, 198)
  350.  
  351. ComSeperateBar.Name = "ComSeperateBar"
  352. ComSeperateBar.Parent = ForceCgui
  353. ComSeperateBar.BackgroundColor3 = Color3.new(1, 1, 1)
  354. ComSeperateBar.BackgroundTransparency = 0.5
  355. ComSeperateBar.BorderSizePixel = 0
  356. ComSeperateBar.Position = UDim2.new(0, 0, 0.0757575706, 0)
  357. ComSeperateBar.Size = UDim2.new(0, 1, 0, 167)
  358. ComSeperateBar.Font = Enum.Font.SourceSans
  359. ComSeperateBar.FontSize = Enum.FontSize.Size14
  360. ComSeperateBar.Text = ""
  361. ComSeperateBar.TextColor3 = Color3.new(0, 0, 0)
  362.  
  363. InsertUser.Name = "InsertUser"
  364. InsertUser.Parent = ForceCgui
  365. InsertUser.BackgroundColor3 = Color3.new(1, 1, 1)
  366. InsertUser.BackgroundTransparency = 1
  367. InsertUser.BorderSizePixel = 0
  368. InsertUser.Position = UDim2.new(0.0064516128, 0, 0.186868697, 0)
  369. InsertUser.Size = UDim2.new(0, 154, 0, 50)
  370. InsertUser.Font = Enum.Font.SourceSansLight
  371. InsertUser.FontSize = Enum.FontSize.Size14
  372. InsertUser.Text = "USERNAME"
  373. InsertUser.TextColor3 = Color3.new(1, 1, 1)
  374. InsertUser.TextScaled = true
  375. InsertUser.TextWrapped = true
  376.  
  377. UserHolder.Name = "UserHolder"
  378. UserHolder.Parent = ForceCgui
  379. UserHolder.BackgroundColor3 = Color3.new(0.0156863, 0.0156863, 0.0156863)
  380. UserHolder.BorderSizePixel = 0
  381. UserHolder.Position = UDim2.new(0.0516129024, 0, 0.451651365, 0)
  382. UserHolder.Size = UDim2.new(0, 139, 0, 3)
  383. UserHolder.Font = Enum.Font.SourceSans
  384. UserHolder.FontSize = Enum.FontSize.Size14
  385. UserHolder.Text = ""
  386. UserHolder.TextColor3 = Color3.new(0, 0, 0)
  387.  
  388. CrimTitle.Name = "CrimTitle"
  389. CrimTitle.Parent = ForceCgui
  390. CrimTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  391. CrimTitle.BackgroundTransparency = 1
  392. CrimTitle.BorderSizePixel = 0
  393. CrimTitle.Position = UDim2.new(0.0064516128, 0, 0, 0)
  394. CrimTitle.Size = UDim2.new(0, 154, 0, 31)
  395. CrimTitle.Font = Enum.Font.SourceSansLight
  396. CrimTitle.FontSize = Enum.FontSize.Size14
  397. CrimTitle.Text = "CRIMINAL GUI"
  398. CrimTitle.TextColor3 = Color3.new(1, 1, 1)
  399. CrimTitle.TextScaled = true
  400. CrimTitle.TextStrokeTransparency = 0
  401. CrimTitle.TextWrapped = true
  402.  
  403. CrimTitleBar.Name = "CrimTitleBar"
  404. CrimTitleBar.Parent = ForceCgui
  405. CrimTitleBar.BackgroundColor3 = Color3.new(0, 0, 0)
  406. CrimTitleBar.BackgroundTransparency = 0.5
  407. CrimTitleBar.BorderSizePixel = 0
  408. CrimTitleBar.Position = UDim2.new(0.0064516128, 0, 0.14952904, 0)
  409. CrimTitleBar.Size = UDim2.new(0, 154, 0, 1)
  410. CrimTitleBar.Font = Enum.Font.SourceSans
  411. CrimTitleBar.FontSize = Enum.FontSize.Size14
  412. CrimTitleBar.Text = ""
  413. CrimTitleBar.TextColor3 = Color3.new(0, 0, 0)
  414.  
  415. TextButton.Parent = ForceCgui
  416. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  417. TextButton.BackgroundTransparency = 0.5
  418. TextButton.BorderSizePixel = 0
  419. TextButton.Position = UDim2.new(0.0516129024, 0, 0.560606062, 0)
  420. TextButton.Size = UDim2.new(0, 139, 0, 50)
  421. TextButton.Font = Enum.Font.SourceSansLight
  422. TextButton.FontSize = Enum.FontSize.Size14
  423. TextButton.Text = "TURN INTO CRIMINAL (First, click KillAura)"
  424. TextButton.TextColor3 = Color3.new(1, 1, 1)
  425. TextButton.TextScaled = true
  426. TextButton.TextStrokeTransparency = 0
  427. TextButton.TextWrapped = true
  428.  
  429. CrimHideButton.Name = "CrimHideButton"
  430. CrimHideButton.Parent = ForceCgui
  431. CrimHideButton.BackgroundColor3 = Color3.new(1, 0.34902, 0.34902)
  432. CrimHideButton.BackgroundTransparency = 0.30000001192093
  433. CrimHideButton.BorderSizePixel = 0
  434. CrimHideButton.Position = UDim2.new(0.0322580636, 0, 0.89015615, 0)
  435. CrimHideButton.Size = UDim2.new(0, 146, 0, 18)
  436. CrimHideButton.Font = Enum.Font.SourceSansLight
  437. CrimHideButton.FontSize = Enum.FontSize.Size14
  438. CrimHideButton.Text = "HIDE"
  439. CrimHideButton.TextColor3 = Color3.new(1, 1, 1)
  440. CrimHideButton.TextScaled = true
  441. CrimHideButton.TextStrokeTransparency = 0
  442. CrimHideButton.TextWrapped = true
  443.  
  444. TPshow.Name = "TPshow"
  445. TPshow.Parent = Main
  446. TPshow.BackgroundColor3 = Color3.new(1, 1, 1)
  447. TPshow.BackgroundTransparency = 0.5
  448. TPshow.BorderSizePixel = 0
  449. TPshow.Position = UDim2.new(0.0166848004, 0, 0.900033236, 0)
  450. TPshow.Size = UDim2.new(0, 104, 0, 22)
  451. TPshow.Font = Enum.Font.SourceSans
  452. TPshow.FontSize = Enum.FontSize.Size14
  453. TPshow.Text = "TELEPORT TO PLAYER"
  454. TPshow.TextColor3 = Color3.new(1, 1, 1)
  455. TPshow.TextScaled = true
  456. TPshow.TextStrokeTransparency = 0
  457. TPshow.TextWrapped = true
  458.  
  459. LocalCommands.Name = "LocalCommands"
  460. LocalCommands.Parent = Main
  461. LocalCommands.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  462. LocalCommands.BorderSizePixel = 0
  463. LocalCommands.Position = UDim2.new(0, 0, 1, 0)
  464. LocalCommands.Size = UDim2.new(0, 338, 0, 100)
  465.  
  466. LocalCMD_Title.Name = "LocalCMD_Title"
  467. LocalCMD_Title.Parent = LocalCommands
  468. LocalCMD_Title.BackgroundColor3 = Color3.new(0, 0, 0)
  469. LocalCMD_Title.BackgroundTransparency = 0.30000001192093
  470. LocalCMD_Title.BorderSizePixel = 0
  471. LocalCMD_Title.Size = UDim2.new(0, 338, 0, 22)
  472. LocalCMD_Title.Font = Enum.Font.SourceSans
  473. LocalCMD_Title.FontSize = Enum.FontSize.Size14
  474. LocalCMD_Title.Text = "COMMANDS FOR YOURSELF"
  475. LocalCMD_Title.TextColor3 = Color3.new(1, 1, 1)
  476. LocalCMD_Title.TextStrokeTransparency = 0
  477.  
  478. NexusTPbut.Name = "NexusTPbut"
  479. NexusTPbut.Parent = LocalCommands
  480. NexusTPbut.BackgroundColor3 = Color3.new(1, 1, 1)
  481. NexusTPbut.BackgroundTransparency = 0.40000000596046
  482. NexusTPbut.BorderSizePixel = 0
  483. NexusTPbut.Position = UDim2.new(0.0177514795, 0, 0.319999993, 0)
  484. NexusTPbut.Size = UDim2.new(0, 98, 0, 16)
  485. NexusTPbut.Font = Enum.Font.SourceSans
  486. NexusTPbut.FontSize = Enum.FontSize.Size14
  487. NexusTPbut.Text = "TP TO NEXUS"
  488. NexusTPbut.TextColor3 = Color3.new(1, 1, 1)
  489. NexusTPbut.TextScaled = true
  490. NexusTPbut.TextStrokeTransparency = 0
  491. NexusTPbut.TextWrapped = true
  492.  
  493. CrimBaseTPbut.Name = "CrimBaseTPbut"
  494. CrimBaseTPbut.Parent = LocalCommands
  495. CrimBaseTPbut.BackgroundColor3 = Color3.new(1, 1, 1)
  496. CrimBaseTPbut.BackgroundTransparency = 0.40000000596046
  497. CrimBaseTPbut.BorderSizePixel = 0
  498. CrimBaseTPbut.Position = UDim2.new(0.0177514795, 0, 0.550980508, 0)
  499. CrimBaseTPbut.Size = UDim2.new(0, 98, 0, 16)
  500. CrimBaseTPbut.Font = Enum.Font.SourceSans
  501. CrimBaseTPbut.FontSize = Enum.FontSize.Size14
  502. CrimBaseTPbut.Text = "TP TO CRIMINAL BASE"
  503. CrimBaseTPbut.TextColor3 = Color3.new(1, 1, 1)
  504. CrimBaseTPbut.TextScaled = true
  505. CrimBaseTPbut.TextStrokeTransparency = 0
  506. CrimBaseTPbut.TextWrapped = true
  507.  
  508. GuardAreaTPbut.Name = "GuardAreaTPbut"
  509. GuardAreaTPbut.Parent = LocalCommands
  510. GuardAreaTPbut.BackgroundColor3 = Color3.new(1, 1, 1)
  511. GuardAreaTPbut.BackgroundTransparency = 0.40000000596046
  512. GuardAreaTPbut.BorderSizePixel = 0
  513. GuardAreaTPbut.Position = UDim2.new(0.0177514795, 0, 0.781960726, 0)
  514. GuardAreaTPbut.Size = UDim2.new(0, 98, 0, 16)
  515. GuardAreaTPbut.Font = Enum.Font.SourceSans
  516. GuardAreaTPbut.FontSize = Enum.FontSize.Size14
  517. GuardAreaTPbut.Text = "TP TO GUARD AREA"
  518. GuardAreaTPbut.TextColor3 = Color3.new(1, 1, 1)
  519. GuardAreaTPbut.TextScaled = true
  520. GuardAreaTPbut.TextStrokeTransparency = 0
  521. GuardAreaTPbut.TextWrapped = true
  522.  
  523. FLY.Name = "FLY"
  524. FLY.Parent = LocalCommands
  525. FLY.BackgroundColor3 = Color3.new(1, 1, 1)
  526. FLY.BackgroundTransparency = 0.40000000596046
  527. FLY.BorderSizePixel = 0
  528. FLY.Position = UDim2.new(0.354683876, 0, 0.330000013, 0)
  529. FLY.Size = UDim2.new(0, 98, 0, 16)
  530. FLY.Font = Enum.Font.SourceSans
  531. FLY.FontSize = Enum.FontSize.Size14
  532. FLY.Text = "FLY 'E'"
  533. FLY.TextColor3 = Color3.new(1, 1, 1)
  534. FLY.TextScaled = true
  535. FLY.TextStrokeTransparency = 0
  536. FLY.TextWrapped = true
  537.  
  538. NWalk.Name = "NWalk"
  539. NWalk.Parent = LocalCommands
  540. NWalk.BackgroundColor3 = Color3.new(1, 1, 1)
  541. NWalk.BackgroundTransparency = 0.40000000596046
  542. NWalk.BorderSizePixel = 0
  543. NWalk.Position = UDim2.new(0.354683876, 0, 0.560980558, 0)
  544. NWalk.Size = UDim2.new(0, 98, 0, 16)
  545. NWalk.Font = Enum.Font.SourceSans
  546. NWalk.FontSize = Enum.FontSize.Size14
  547. NWalk.Text = "NORMAL WALKSPEED"
  548. NWalk.TextColor3 = Color3.new(1, 1, 1)
  549. NWalk.TextScaled = true
  550. NWalk.TextStrokeTransparency = 0
  551. NWalk.TextWrapped = true
  552.  
  553. Njump.Name = "Njump"
  554. Njump.Parent = LocalCommands
  555. Njump.BackgroundColor3 = Color3.new(1, 1, 1)
  556. Njump.BackgroundTransparency = 0.40000000596046
  557. Njump.BorderSizePixel = 0
  558. Njump.Position = UDim2.new(0.354683876, 0, 0.791960776, 0)
  559. Njump.Size = UDim2.new(0, 98, 0, 16)
  560. Njump.Font = Enum.Font.SourceSans
  561. Njump.FontSize = Enum.FontSize.Size14
  562. Njump.Text = "NORMAL JUMP HEIGHT"
  563. Njump.TextColor3 = Color3.new(1, 1, 1)
  564. Njump.TextScaled = true
  565. Njump.TextStrokeTransparency = 0
  566. Njump.TextWrapped = true
  567.  
  568. tfJump.Name = "tfJump"
  569. tfJump.Parent = LocalCommands
  570. tfJump.BackgroundColor3 = Color3.new(1, 1, 1)
  571. tfJump.BackgroundTransparency = 0.40000000596046
  572. tfJump.BorderSizePixel = 0
  573. tfJump.Position = UDim2.new(0.691616237, 0, 0.781960726, 0)
  574. tfJump.Size = UDim2.new(0, 98, 0, 16)
  575. tfJump.Font = Enum.Font.SourceSans
  576. tfJump.FontSize = Enum.FontSize.Size14
  577. tfJump.Text = "+25 JUMP HEIGHT"
  578. tfJump.TextColor3 = Color3.new(1, 1, 1)
  579. tfJump.TextScaled = true
  580. tfJump.TextStrokeTransparency = 0
  581. tfJump.TextWrapped = true
  582.  
  583. Respawn.Name = "Respawn"
  584. Respawn.Parent = LocalCommands
  585. Respawn.BackgroundColor3 = Color3.new(1, 1, 1)
  586. Respawn.BackgroundTransparency = 0.40000000596046
  587. Respawn.BorderSizePixel = 0
  588. Respawn.Position = UDim2.new(0.691616237, 0, 0.319999993, 0)
  589. Respawn.Size = UDim2.new(0, 98, 0, 16)
  590. Respawn.Font = Enum.Font.SourceSans
  591. Respawn.FontSize = Enum.FontSize.Size14
  592. Respawn.Text = "RESPAWN"
  593. Respawn.TextColor3 = Color3.new(1, 1, 1)
  594. Respawn.TextScaled = true
  595. Respawn.TextStrokeTransparency = 0
  596. Respawn.TextWrapped = true
  597.  
  598. tfWalk.Name = "tfWalk"
  599. tfWalk.Parent = LocalCommands
  600. tfWalk.BackgroundColor3 = Color3.new(1, 1, 1)
  601. tfWalk.BackgroundTransparency = 0.40000000596046
  602. tfWalk.BorderSizePixel = 0
  603. tfWalk.Position = UDim2.new(0.691616237, 0, 0.550980508, 0)
  604. tfWalk.Size = UDim2.new(0, 98, 0, 16)
  605. tfWalk.Font = Enum.Font.SourceSans
  606. tfWalk.FontSize = Enum.FontSize.Size14
  607. tfWalk.Text = "+25 WALKSPEED"
  608. tfWalk.TextColor3 = Color3.new(1, 1, 1)
  609. tfWalk.TextScaled = true
  610. tfWalk.TextStrokeTransparency = 0
  611. tfWalk.TextWrapped = true
  612.  
  613. LocalCMD_BarTitle.Name = "LocalCMD_BarTitle"
  614. LocalCMD_BarTitle.Parent = LocalCommands
  615. LocalCMD_BarTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  616. LocalCMD_BarTitle.BackgroundTransparency = 0.30000001192093
  617. LocalCMD_BarTitle.BorderSizePixel = 0
  618. LocalCMD_BarTitle.Position = UDim2.new(0.0798816606, 0, 0.219999999, 0)
  619. LocalCMD_BarTitle.Size = UDim2.new(0, 283, 0, 4)
  620. LocalCMD_BarTitle.Font = Enum.Font.SourceSans
  621. LocalCMD_BarTitle.FontSize = Enum.FontSize.Size14
  622. LocalCMD_BarTitle.Text = ""
  623. LocalCMD_BarTitle.TextColor3 = Color3.new(1, 1, 1)
  624. LocalCMD_BarTitle.TextStrokeTransparency = 0
  625.  
  626. TheLocal.Name = "TheLocal"
  627. TheLocal.Parent = Main
  628. TheLocal.BackgroundColor3 = Color3.new(1, 1, 1)
  629. TheLocal.BackgroundTransparency = 0.5
  630. TheLocal.BorderSizePixel = 0
  631. TheLocal.Position = UDim2.new(0.344114006, 0, 0.900033236, 0)
  632. TheLocal.Size = UDim2.new(0, 104, 0, 22)
  633. TheLocal.Font = Enum.Font.SourceSans
  634. TheLocal.FontSize = Enum.FontSize.Size14
  635. TheLocal.Text = "MORE LOCAL COMMANDS"
  636. TheLocal.TextColor3 = Color3.new(1, 1, 1)
  637. TheLocal.TextScaled = true
  638. TheLocal.TextStrokeTransparency = 0
  639. TheLocal.TextWrapped = true
  640.  
  641. CrimG.Name = "CrimG"
  642. CrimG.Parent = Main
  643. CrimG.BackgroundColor3 = Color3.new(1, 1, 1)
  644. CrimG.BackgroundTransparency = 0.5
  645. CrimG.BorderSizePixel = 0
  646. CrimG.Position = UDim2.new(0.671616912, 0, 0.900033236, 0)
  647. CrimG.Size = UDim2.new(0, 104, 0, 22)
  648. CrimG.Font = Enum.Font.SourceSans
  649. CrimG.FontSize = Enum.FontSize.Size14
  650. CrimG.Text = "FORCE CRIMINAL PLAYER"
  651. CrimG.TextColor3 = Color3.new(1, 1, 1)
  652. CrimG.TextScaled = true
  653. CrimG.TextStrokeTransparency = 0
  654. CrimG.TextWrapped = true
  655.  
  656. tpgui.Name = "tpgui"
  657. tpgui.Parent = Main
  658. tpgui.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  659. tpgui.BorderSizePixel = 0
  660. tpgui.Position = UDim2.new(-0.458579868, 0, 0.215946838, 0)
  661. tpgui.Size = UDim2.new(0, 155, 0, 198)
  662.  
  663. TPtileBar.Name = "TPtileBar"
  664. TPtileBar.Parent = tpgui
  665. TPtileBar.BackgroundColor3 = Color3.new(0, 0, 0)
  666. TPtileBar.BackgroundTransparency = 0.5
  667. TPtileBar.BorderSizePixel = 0
  668. TPtileBar.Position = UDim2.new(0.0064516128, 0, 0.14952904, 0)
  669. TPtileBar.Size = UDim2.new(0, 154, 0, 1)
  670. TPtileBar.Font = Enum.Font.SourceSans
  671. TPtileBar.FontSize = Enum.FontSize.Size14
  672. TPtileBar.Text = ""
  673. TPtileBar.TextColor3 = Color3.new(0, 0, 0)
  674.  
  675. TPYEET.Name = "TPYEET"
  676. TPYEET.Parent = tpgui
  677. TPYEET.BackgroundColor3 = Color3.new(1, 1, 1)
  678. TPYEET.BackgroundTransparency = 0.5
  679. TPYEET.BorderSizePixel = 0
  680. TPYEET.Position = UDim2.new(0.0580645166, 0, 0.560606062, 0)
  681. TPYEET.Size = UDim2.new(0, 140, 0, 50)
  682. TPYEET.Font = Enum.Font.SourceSansLight
  683. TPYEET.FontSize = Enum.FontSize.Size14
  684. TPYEET.Text = "TELEPORT"
  685. TPYEET.TextColor3 = Color3.new(1, 1, 1)
  686. TPYEET.TextScaled = true
  687. TPYEET.TextStrokeTransparency = 0
  688. TPYEET.TextWrapped = true
  689.  
  690. UserHolderTP.Name = "UserHolderTP"
  691. UserHolderTP.Parent = tpgui
  692. UserHolderTP.BackgroundColor3 = Color3.new(0.0156863, 0.0156863, 0.0156863)
  693. UserHolderTP.BorderSizePixel = 0
  694. UserHolderTP.Position = UDim2.new(0.0516129024, 0, 0.451651365, 0)
  695. UserHolderTP.Size = UDim2.new(0, 139, 0, 3)
  696. UserHolderTP.Font = Enum.Font.SourceSans
  697. UserHolderTP.FontSize = Enum.FontSize.Size14
  698. UserHolderTP.Text = ""
  699. UserHolderTP.TextColor3 = Color3.new(0, 0, 0)
  700.  
  701. InsertUserTP.Name = "InsertUserTP"
  702. InsertUserTP.Parent = tpgui
  703. InsertUserTP.BackgroundColor3 = Color3.new(1, 1, 1)
  704. InsertUserTP.BackgroundTransparency = 1
  705. InsertUserTP.BorderSizePixel = 0
  706. InsertUserTP.Position = UDim2.new(0.0064516128, 0, 0.186868697, 0)
  707. InsertUserTP.Size = UDim2.new(0, 154, 0, 50)
  708. InsertUserTP.Font = Enum.Font.SourceSansLight
  709. InsertUserTP.FontSize = Enum.FontSize.Size14
  710. InsertUserTP.Text = "USERNAME"
  711. InsertUserTP.TextColor3 = Color3.new(1, 1, 1)
  712. InsertUserTP.TextScaled = true
  713. InsertUserTP.TextWrapped = true
  714.  
  715. TpTitle.Name = "TpTitle"
  716. TpTitle.Parent = tpgui
  717. TpTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  718. TpTitle.BackgroundTransparency = 1
  719. TpTitle.BorderSizePixel = 0
  720. TpTitle.Position = UDim2.new(0.0064516128, 0, 0, 0)
  721. TpTitle.Size = UDim2.new(0, 154, 0, 31)
  722. TpTitle.Font = Enum.Font.SourceSansLight
  723. TpTitle.FontSize = Enum.FontSize.Size14
  724. TpTitle.Text = "TELEPORT GUI"
  725. TpTitle.TextColor3 = Color3.new(1, 1, 1)
  726. TpTitle.TextScaled = true
  727. TpTitle.TextStrokeTransparency = 0
  728. TpTitle.TextWrapped = true
  729.  
  730. RightSepBarTp.Name = "RightSepBarTp"
  731. RightSepBarTp.Parent = tpgui
  732. RightSepBarTp.BackgroundColor3 = Color3.new(1, 1, 1)
  733. RightSepBarTp.BackgroundTransparency = 0.5
  734. RightSepBarTp.BorderSizePixel = 0
  735. RightSepBarTp.Position = UDim2.new(0.993548393, 0, 0.0757575706, 0)
  736. RightSepBarTp.Size = UDim2.new(0, 1, 0, 167)
  737. RightSepBarTp.Font = Enum.Font.SourceSans
  738. RightSepBarTp.FontSize = Enum.FontSize.Size14
  739. RightSepBarTp.Text = ""
  740. RightSepBarTp.TextColor3 = Color3.new(0, 0, 0)
  741.  
  742. TpHideButton.Name = "TpHideButton"
  743. TpHideButton.Parent = tpgui
  744. TpHideButton.BackgroundColor3 = Color3.new(1, 0.34902, 0.34902)
  745. TpHideButton.BackgroundTransparency = 0.30000001192093
  746. TpHideButton.BorderSizePixel = 0
  747. TpHideButton.Position = UDim2.new(0.0322580636, 0, 0.89015615, 0)
  748. TpHideButton.Size = UDim2.new(0, 146, 0, 18)
  749. TpHideButton.Font = Enum.Font.SourceSansLight
  750. TpHideButton.FontSize = Enum.FontSize.Size14
  751. TpHideButton.Text = "HIDE"
  752. TpHideButton.TextColor3 = Color3.new(1, 1, 1)
  753. TpHideButton.TextScaled = true
  754. TpHideButton.TextStrokeTransparency = 0
  755. TpHideButton.TextWrapped = true
  756.  
  757. AmokahsLogo.Name = "AmokahsLogo"
  758. AmokahsLogo.Parent = Main
  759. AmokahsLogo.BackgroundColor3 = Color3.new(1, 1, 1)
  760. AmokahsLogo.BackgroundTransparency = 1
  761. AmokahsLogo.BorderSizePixel = 0
  762. AmokahsLogo.Position = UDim2.new(0.0177514795, 0, 0, 0)
  763. AmokahsLogo.Size = UDim2.new(0, 34, 0, 35)
  764. AmokahsLogo.Image = "rbxassetid://2715559615"
  765.  
  766. SuperPunch.Name = "SuperPunch"
  767. SuperPunch.Parent = Main
  768. SuperPunch.BackgroundColor3 = Color3.new(1, 1, 1)
  769. SuperPunch.BackgroundTransparency = 0.5
  770. SuperPunch.BorderSizePixel = 0
  771. SuperPunch.Position = UDim2.new(0.511219442, 0, 0.58801502, 0)
  772. SuperPunch.Size = UDim2.new(0, 158, 0, 22)
  773. SuperPunch.Font = Enum.Font.SourceSans
  774. SuperPunch.FontSize = Enum.FontSize.Size14
  775. SuperPunch.Text = "SUPER PUNCH"
  776. SuperPunch.TextColor3 = Color3.new(1, 1, 1)
  777. SuperPunch.TextScaled = true
  778. SuperPunch.TextStrokeTransparency = 0
  779. SuperPunch.TextWrapped = true
  780.  
  781. KillAura.Name = "KillAura"
  782. KillAura.Parent = Main
  783. KillAura.BackgroundColor3 = Color3.new(1, 1, 1)
  784. KillAura.BackgroundTransparency = 0.5
  785. KillAura.BorderColor3 = Color3.new(1, 0, 0)
  786. KillAura.BorderSizePixel = 0
  787. KillAura.Position = UDim2.new(0.511219442, 0, 0.262595385, 0)
  788. KillAura.Size = UDim2.new(0, 157, 0, 22)
  789. KillAura.Font = Enum.Font.SourceSans
  790. KillAura.FontSize = Enum.FontSize.Size14
  791. KillAura.Text = "TOGGABLE KILL AURA 'P'"
  792. KillAura.TextColor3 = Color3.new(1, 1, 1)
  793. KillAura.TextScaled = true
  794. KillAura.TextStrokeTransparency = 0
  795. KillAura.TextWrapped = true
  796.  
  797. BeCriminal.Name = "BeCriminal"
  798. BeCriminal.Parent = Main
  799. BeCriminal.BackgroundColor3 = Color3.new(1, 1, 1)
  800. BeCriminal.BackgroundTransparency = 0.5
  801. BeCriminal.BorderSizePixel = 0
  802. BeCriminal.Position = UDim2.new(0.514421463, 0, 0.696629226, 0)
  803. BeCriminal.Size = UDim2.new(0, 74, 0, 22)
  804. BeCriminal.Font = Enum.Font.SourceSans
  805. BeCriminal.FontSize = Enum.FontSize.Size14
  806. BeCriminal.Text = "CRIMINAL"
  807. BeCriminal.TextColor3 = Color3.new(1, 1, 1)
  808. BeCriminal.TextScaled = true
  809. BeCriminal.TextStrokeTransparency = 0
  810. BeCriminal.TextWrapped = true
  811.  
  812. BeGuard.Name = "BeGuard"
  813. BeGuard.Parent = Main
  814. BeGuard.BackgroundColor3 = Color3.new(1, 1, 1)
  815. BeGuard.BackgroundTransparency = 0.5
  816. BeGuard.BorderSizePixel = 0
  817. BeGuard.Position = UDim2.new(0.0177514795, 0, 0.696629226, 0)
  818. BeGuard.Size = UDim2.new(0, 77, 0, 22)
  819. BeGuard.Font = Enum.Font.SourceSans
  820. BeGuard.FontSize = Enum.FontSize.Size14
  821. BeGuard.Text = "GUARD"
  822. BeGuard.TextColor3 = Color3.new(1, 1, 1)
  823. BeGuard.TextScaled = true
  824. BeGuard.TextStrokeTransparency = 0
  825. BeGuard.TextWrapped = true
  826.  
  827. BeInmate.Name = "BeInmate"
  828. BeInmate.Parent = Main
  829. BeInmate.BackgroundColor3 = Color3.new(1, 1, 1)
  830. BeInmate.BackgroundTransparency = 0.5
  831. BeInmate.BorderSizePixel = 0
  832. BeInmate.Position = UDim2.new(0.268615901, 0, 0.696629226, 0)
  833. BeInmate.Size = UDim2.new(0, 74, 0, 22)
  834. BeInmate.Font = Enum.Font.SourceSans
  835. BeInmate.FontSize = Enum.FontSize.Size14
  836. BeInmate.Text = "INMATE"
  837. BeInmate.TextColor3 = Color3.new(1, 1, 1)
  838. BeInmate.TextScaled = true
  839. BeInmate.TextStrokeTransparency = 0
  840. BeInmate.TextWrapped = true
  841.  
  842. ArrestAll.Name = "ArrestAll"
  843. ArrestAll.Parent = Main
  844. ArrestAll.BackgroundColor3 = Color3.new(1, 1, 1)
  845. ArrestAll.BackgroundTransparency = 0.5
  846. ArrestAll.BorderSizePixel = 0
  847. ArrestAll.Position = UDim2.new(0.511834323, 0, 0.370786548, 0)
  848. ArrestAll.Size = UDim2.new(0, 159, 0, 22)
  849. ArrestAll.Font = Enum.Font.SourceSans
  850. ArrestAll.FontSize = Enum.FontSize.Size14
  851. ArrestAll.Text = "ARREST ALL"
  852. ArrestAll.TextColor3 = Color3.new(1, 1, 1)
  853. ArrestAll.TextScaled = true
  854. ArrestAll.TextStrokeTransparency = 0
  855. ArrestAll.TextWrapped = true
  856.  
  857. InvGuns.Name = "InvGuns"
  858. InvGuns.Parent = Main
  859. InvGuns.BackgroundColor3 = Color3.new(1, 1, 1)
  860. InvGuns.BackgroundTransparency = 0.5
  861. InvGuns.BorderSizePixel = 0
  862. InvGuns.Position = UDim2.new(0.508875728, 0, 0.16104874, 0)
  863. InvGuns.Size = UDim2.new(0, 159, 0, 22)
  864. InvGuns.Font = Enum.Font.SourceSans
  865. InvGuns.FontSize = Enum.FontSize.Size14
  866. InvGuns.Text = "TURN GUNS INVIS (Unequip first)"
  867. InvGuns.TextColor3 = Color3.new(1, 1, 1)
  868. InvGuns.TextScaled = true
  869. InvGuns.TextStrokeTransparency = 0
  870. InvGuns.TextWrapped = true
  871.  
  872. CrimPunch.Name = "CrimPunch"
  873. CrimPunch.Parent = Main
  874. CrimPunch.BackgroundColor3 = Color3.new(1, 1, 1)
  875. CrimPunch.BackgroundTransparency = 0.5
  876. CrimPunch.BorderSizePixel = 0
  877. CrimPunch.Position = UDim2.new(0.508260846, 0, 0.481702745, 0)
  878. CrimPunch.Size = UDim2.new(0, 158, 0, 22)
  879. CrimPunch.Font = Enum.Font.SourceSans
  880. CrimPunch.FontSize = Enum.FontSize.Size14
  881. CrimPunch.Text = "REMOVE TOOLS"
  882. CrimPunch.TextColor3 = Color3.new(1, 1, 1)
  883. CrimPunch.TextScaled = true
  884. CrimPunch.TextStrokeTransparency = 0
  885. CrimPunch.TextWrapped = true
  886.  
  887. Trans.Name = "Trans"
  888. Trans.Parent = Main
  889. Trans.BackgroundColor3 = Color3.new(1, 0.458824, 0.439216)
  890. Trans.BackgroundTransparency = 0.5
  891. Trans.BorderSizePixel = 0
  892. Trans.Position = UDim2.new(0.64462477, 0, 0.0199335553, 0)
  893. Trans.Size = UDim2.new(0, 80, 0, 25)
  894. Trans.Font = Enum.Font.SourceSans
  895. Trans.FontSize = Enum.FontSize.Size14
  896. Trans.Text = "TRANSPARENT"
  897. Trans.TextColor3 = Color3.new(1, 1, 1)
  898. Trans.TextScaled = true
  899. Trans.TextStrokeTransparency = 0
  900. Trans.TextWrapped = true
  901.  
  902. Open.Name = "Open"
  903. Open.Parent = PrisonGui
  904. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  905. Open.BackgroundTransparency = 1
  906. Open.BorderSizePixel = 0
  907. Open.Position = UDim2.new(0, 0, 0.915841579, 0)
  908. Open.Size = UDim2.new(0, 154, 0, 34)
  909.  
  910. OpenGUI.Name = "OpenGUI"
  911. OpenGUI.Parent = Open
  912. OpenGUI.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  913. OpenGUI.BackgroundTransparency = 0.5
  914. OpenGUI.BorderSizePixel = 0
  915. OpenGUI.Size = UDim2.new(0, 154, 0, 34)
  916. OpenGUI.Font = Enum.Font.SourceSansLight
  917. OpenGUI.FontSize = Enum.FontSize.Size14
  918. OpenGUI.Text = "OPEN"
  919. OpenGUI.TextColor3 = Color3.new(1, 1, 1)
  920. OpenGUI.TextScaled = true
  921. OpenGUI.TextStrokeTransparency = 0
  922. OpenGUI.TextWrapped = true
  923.  
  924. Credit.Name = "Credit"
  925. Credit.Parent = PrisonGui
  926. Credit.BackgroundColor3 = Color3.new(1, 1, 1)
  927. Credit.BackgroundTransparency = 1
  928. Credit.BorderSizePixel = 0
  929. Credit.Position = UDim2.new(0, 0, 0.589113653, 0)
  930. Credit.Size = UDim2.new(0, 156, 0, 43)
  931. Credit.Font = Enum.Font.SourceSansSemibold
  932. Credit.FontSize = Enum.FontSize.Size14
  933. Credit.Text = "Lame Prison Life GUI by Amokah"
  934. Credit.TextColor3 = Color3.new(0, 0.764706, 0.776471)
  935. Credit.TextScaled = true
  936. Credit.TextStrokeTransparency = 0.80000001192093
  937. Credit.TextTransparency = 0.5
  938. Credit.TextWrapped = true
  939. Credit.TextXAlignment = Enum.TextXAlignment.Left
  940.  
  941. Dino.Name = "Dino"
  942. Dino.Parent = PrisonGui
  943. Dino.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  944. Dino.BackgroundTransparency = 0.80000001192093
  945. Dino.BorderColor3 = Color3.new(1, 0, 0)
  946. Dino.BorderSizePixel = 5
  947. Dino.Position = UDim2.new(0, 0, 0.343575954, 0)
  948. Dino.Size = UDim2.new(0, 1025, 0, 101)
  949. Dino.Visible = false
  950. Dino.Font = Enum.Font.SourceSans
  951. Dino.FontSize = Enum.FontSize.Size14
  952. Dino.Text = "This GUI is not the best with FREE exploits. It's mainly for paid exploits, such as Visenya, Synapse, etc. If you are using a free lua executor with this, then don't be surprised if something does not work correctly, please note, if anyone has uploaded this with their own link, that is not 'https://pastebin.com/JS5SYqaU' then you won't get the newest release of my crappy GUI, but anyway, good luck and have fun with this I guess."
  953. Dino.TextColor3 = Color3.new(1, 1, 1)
  954. Dino.TextScaled = true
  955. Dino.TextStrokeTransparency = 0.80000001192093
  956. Dino.TextTransparency = 0.80000001192093
  957. Dino.TextWrapped = true
  958.  
  959. KA.Name = "KA"
  960. KA.Parent = PrisonGui
  961. KA.BackgroundColor3 = Color3.new(1, 1, 1)
  962. KA.BackgroundTransparency = 1
  963. KA.BorderSizePixel = 0
  964. KA.Position = UDim2.new(0, 0, 0.640399575, 0)
  965. KA.Size = UDim2.new(0, 162, 0, 62)
  966.  
  967. NameOfKa.Name = "NameOfKa"
  968. NameOfKa.Parent = KA
  969. NameOfKa.BackgroundColor3 = Color3.new(1, 1, 1)
  970. NameOfKa.BackgroundTransparency = 1
  971. NameOfKa.BorderSizePixel = 0
  972. NameOfKa.Position = UDim2.new(0, 0, 0.419354856, 0)
  973. NameOfKa.Size = UDim2.new(0, 157, 0, 30)
  974. NameOfKa.Font = Enum.Font.SourceSans
  975. NameOfKa.FontSize = Enum.FontSize.Size14
  976. NameOfKa.Text = "KILL AURA "
  977. NameOfKa.TextColor3 = Color3.new(0.72549, 0.329412, 0.337255)
  978. NameOfKa.TextScaled = true
  979. NameOfKa.TextStrokeColor3 = Color3.new(0.333333, 0, 0)
  980. NameOfKa.TextStrokeTransparency = 0.5
  981. NameOfKa.TextWrapped = true
  982. NameOfKa.TextXAlignment = Enum.TextXAlignment.Left
  983.  
  984. TrueOrFalse.Name = "TrueOrFalse"
  985. TrueOrFalse.Parent = KA
  986. TrueOrFalse.BackgroundColor3 = Color3.new(1, 1, 1)
  987. TrueOrFalse.BackgroundTransparency = 1
  988. TrueOrFalse.BorderSizePixel = 0
  989. TrueOrFalse.Position = UDim2.new(0, 0, 0.913856268, 0)
  990. TrueOrFalse.Size = UDim2.new(0, 148, 0, 33)
  991. TrueOrFalse.Font = Enum.Font.SourceSans
  992. TrueOrFalse.FontSize = Enum.FontSize.Size14
  993. TrueOrFalse.Text = "nil"
  994. TrueOrFalse.TextColor3 = Color3.new(1, 0.278431, 0.278431)
  995. TrueOrFalse.TextScaled = true
  996. TrueOrFalse.TextStrokeTransparency = 0.5
  997. TrueOrFalse.TextWrapped = true
  998. TrueOrFalse.TextXAlignment = Enum.TextXAlignment.Left
  999.  
  1000. TeamGUIOC.Name = "TeamGUIOC"
  1001. TeamGUIOC.Parent = PrisonGui
  1002. TeamGUIOC.BackgroundColor3 = Color3.new(1, 1, 1)
  1003. TeamGUIOC.BackgroundTransparency = 1
  1004. TeamGUIOC.BorderSizePixel = 0
  1005. TeamGUIOC.Position = UDim2.new(0.00132625992, 0, 0.759765625, 0)
  1006. TeamGUIOC.Size = UDim2.new(0, 156, 0, 33)
  1007.  
  1008. TeamOPorCL.Name = "TeamOPorCL"
  1009. TeamOPorCL.Parent = TeamGUIOC
  1010. TeamOPorCL.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  1011. TeamOPorCL.BackgroundTransparency = 0.5
  1012. TeamOPorCL.BorderColor3 = Color3.new(0.568627, 0.176471, 0.568627)
  1013. TeamOPorCL.BorderSizePixel = 0
  1014. TeamOPorCL.Position = UDim2.new(-5.00802327972, 5, 5.12121212, 5)
  1015. TeamOPorCL.Size = UDim2.new(0, 156, 0, 32)
  1016. TeamOPorCL.Font = Enum.Font.SourceSansLight
  1017. TeamOPorCL.FontSize = Enum.FontSize.Size14
  1018. TeamOPorCL.Text = "Open/Close STAY ON TEAM GUI"
  1019. TeamOPorCL.TextColor3 = Color3.new(1, 1, 1)
  1020. TeamOPorCL.TextScaled = true
  1021. TeamOPorCL.TextStrokeTransparency = 0
  1022. TeamOPorCL.TextWrapped = true
  1023.  
  1024. TeamMain.Name = "TeamMain"
  1025. TeamMain.Parent = PrisonGui
  1026. TeamMain.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  1027. TeamMain.BorderSizePixel = 0
  1028. TeamMain.Position = UDim2.new(0, 0, 0.291015625, 0)
  1029. TeamMain.Size = UDim2.new(0, 214, 0, 152)
  1030. TeamMain.Visible = false
  1031.  
  1032. TextLabel.Parent = TeamMain
  1033. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  1034. TextLabel.BackgroundTransparency = 0.5
  1035. TextLabel.BorderSizePixel = 0
  1036. TextLabel.Position = UDim2.new(0.104430377, 0, 0.203947365, 0)
  1037. TextLabel.Size = UDim2.new(0, 169, 0, 3)
  1038. TextLabel.Font = Enum.Font.SourceSans
  1039. TextLabel.FontSize = Enum.FontSize.Size14
  1040. TextLabel.Text = ""
  1041. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  1042.  
  1043. TextLabel_2.Parent = TeamMain
  1044. TextLabel_2.BackgroundColor3 = Color3.new(0, 0, 0)
  1045. TextLabel_2.BackgroundTransparency = 1
  1046. TextLabel_2.BorderSizePixel = 0
  1047. TextLabel_2.Size = UDim2.new(0, 214, 0, 31)
  1048. TextLabel_2.Font = Enum.Font.SourceSansLight
  1049. TextLabel_2.FontSize = Enum.FontSize.Size14
  1050. TextLabel_2.Text = "Stay On Team GUI"
  1051. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  1052. TextLabel_2.TextScaled = true
  1053. TextLabel_2.TextStrokeTransparency = 0
  1054. TextLabel_2.TextWrapped = true
  1055.  
  1056. SOG.Name = "SOG"
  1057. SOG.Parent = TeamMain
  1058. SOG.BackgroundColor3 = Color3.new(0.52549, 0.756863, 1)
  1059. SOG.BackgroundTransparency = 0.5
  1060. SOG.BorderSizePixel = 0
  1061. SOG.Position = UDim2.new(0, 0, 0.223684207, 0)
  1062. SOG.Size = UDim2.new(0, 214, 0, 25)
  1063. SOG.Font = Enum.Font.SourceSansLight
  1064. SOG.FontSize = Enum.FontSize.Size14
  1065. SOG.Text = "Stay on guards team!"
  1066. SOG.TextColor3 = Color3.new(1, 1, 1)
  1067. SOG.TextScaled = true
  1068. SOG.TextStrokeTransparency = 0
  1069. SOG.TextWrapped = true
  1070.  
  1071. SOC.Name = "SOC"
  1072. SOC.Parent = TeamMain
  1073. SOC.BackgroundColor3 = Color3.new(1, 0.235294, 0.235294)
  1074. SOC.BackgroundTransparency = 0.5
  1075. SOC.BorderSizePixel = 0
  1076. SOC.Position = UDim2.new(0, 0, 0.394416004, 0)
  1077. SOC.Size = UDim2.new(0, 214, 0, 25)
  1078. SOC.Font = Enum.Font.SourceSansLight
  1079. SOC.FontSize = Enum.FontSize.Size14
  1080. SOC.Text = "Stay on criminals team!"
  1081. SOC.TextColor3 = Color3.new(1, 1, 1)
  1082. SOC.TextScaled = true
  1083. SOC.TextStrokeTransparency = 0
  1084. SOC.TextWrapped = true
  1085.  
  1086. SOI.Name = "SOI"
  1087. SOI.Parent = TeamMain
  1088. SOI.BackgroundColor3 = Color3.new(1, 0.831373, 0.494118)
  1089. SOI.BackgroundTransparency = 0.5
  1090. SOI.BorderSizePixel = 0
  1091. SOI.Position = UDim2.new(0, 0, 0.559050083, 0)
  1092. SOI.Size = UDim2.new(0, 214, 0, 25)
  1093. SOI.Font = Enum.Font.SourceSansLight
  1094. SOI.FontSize = Enum.FontSize.Size14
  1095. SOI.Text = "Stay on inmates team!"
  1096. SOI.TextColor3 = Color3.new(1, 1, 1)
  1097. SOI.TextScaled = true
  1098. SOI.TextStrokeTransparency = 0
  1099. SOI.TextWrapped = true
  1100.  
  1101. Disable.Name = "Disable"
  1102. Disable.Parent = TeamMain
  1103. Disable.BackgroundColor3 = Color3.new(0.615686, 0.407843, 0.411765)
  1104. Disable.BackgroundTransparency = 0.5
  1105. Disable.BorderSizePixel = 0
  1106. Disable.Position = UDim2.new(0, 0, 0.801872253, 0)
  1107. Disable.Size = UDim2.new(0, 214, 0, 29)
  1108. Disable.Font = Enum.Font.SourceSansSemibold
  1109. Disable.FontSize = Enum.FontSize.Size14
  1110. Disable.Text = "Disable"
  1111. Disable.TextColor3 = Color3.new(1, 1, 1)
  1112. Disable.TextScaled = true
  1113. Disable.TextStrokeTransparency = 0
  1114. Disable.TextWrapped = true
  1115.  
  1116.  
  1117. Main.Position = UDim2.new(0.345, 0,2.204, 0)
  1118. TeamOPorCL.Visible = false
  1119. TeamMain.Visible = false
  1120. TeamGUIOC.Visible = false
  1121. LocalCommands.Visible = false
  1122. ForceCgui.Visible = false
  1123. tpgui.Visible = false
  1124. KA.Visible = true
  1125. TrueOrFalse.Text = "nil"
  1126. TrueOrFalse.TextColor3 = Color3.new(255, 0, 191)
  1127.  
  1128. wait(0.5)
  1129. Dino.Visible = true
  1130. Dino.TextTransparency = 0.8
  1131. Dino.TextStrokeTransparency = 0.8
  1132. wait(0.1)
  1133. Dino.TextTransparency = 0.7
  1134. Dino.TextStrokeTransparency = 0.7
  1135. wait(0.1)
  1136. Dino.TextTransparency = 0.6
  1137. Dino.TextStrokeTransparency = 0.6
  1138. wait(0.1)
  1139. Dino.TextTransparency = 0.5
  1140. Dino.TextStrokeTransparency = 0.5
  1141. wait(0.1)
  1142. Dino.TextTransparency = 0.4
  1143. Dino.TextStrokeTransparency = 0.4
  1144. wait(0.1)
  1145. Dino.TextTransparency = 0.3
  1146. Dino.TextStrokeTransparency = 0.3
  1147. wait(0.1)
  1148. Dino.TextTransparency = 0.2
  1149. Dino.TextStrokeTransparency = 0.2
  1150. wait(0.1)
  1151. Dino.TextTransparency = 0.1
  1152. Dino.TextStrokeTransparency = 0.1
  1153.  
  1154. wait(5)
  1155.  
  1156. Dino.TextTransparency = 0.1
  1157. Dino.TextStrokeTransparency = 0.1
  1158. wait(0.1)
  1159. Dino.TextTransparency = 0.2
  1160. Dino.TextStrokeTransparency = 0.2
  1161. wait(0.1)
  1162. Dino.TextTransparency = 0.3
  1163. Dino.TextStrokeTransparency = 0.3
  1164. wait(0.1)
  1165. Dino.TextTransparency = 0.4
  1166. Dino.TextStrokeTransparency = 0.4
  1167. wait(0.1)
  1168. Dino.TextTransparency = 0.5
  1169. Dino.TextStrokeTransparency = 0.5
  1170. wait(0.1)
  1171. Dino.TextTransparency = 0.6
  1172. Dino.TextStrokeTransparency = 0.6
  1173. wait(0.1)
  1174. Dino.TextTransparency = 0.7
  1175. Dino.TextStrokeTransparency = 0.7
  1176. wait(0.1)
  1177. Dino.TextTransparency = 0.8
  1178. Dino.TextStrokeTransparency = 0.8
  1179. wait(0.1)
  1180. Dino.Visible = false
  1181.  
  1182. OpenGUI.MouseButton1Down:connect(function()
  1183. Main.Visible = true
  1184.  
  1185. Main:TweenPosition(UDim2.new(0.345, 0,0.204, 0), 'Out', 'Bounce', 3)
  1186. end)
  1187.  
  1188. Close.MouseButton1Down:connect(function()
  1189. Main:TweenPosition(UDim2.new(0.345, 0,2.204, 0), 'Out', 'Bounce', 1)
  1190. wait(1)
  1191. Main.Visible = false
  1192. end)
  1193.  
  1194. CrimG.MouseButton1Down:connect(function()
  1195. ForceCgui.Visible = true
  1196. end)
  1197.  
  1198. CrimHideButton.MouseButton1Down:connect(function()
  1199. ForceCgui.Visible = false
  1200. end)
  1201.  
  1202. TheLocal.MouseButton1Down:connect(function()
  1203. if LocalCommands.Visible == false then
  1204. LocalCommands.Visible = true
  1205. elseif LocalCommands.Visible == true then
  1206. LocalCommands.Visible = false
  1207. end
  1208. end)
  1209.  
  1210. NWalk.MouseButton1Down:connect(function()
  1211. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  1212. end)
  1213.  
  1214. NexusTPbut.MouseButton1Down:connect(function()
  1215. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(879,99,2377)
  1216. end)
  1217.  
  1218. CrimBaseTPbut.MouseButton1Down:connect(function()
  1219. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-943, 96, 2055)
  1220. end)
  1221.  
  1222. tfWalk.MouseButton1Down:connect(function()
  1223. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 41
  1224. end)
  1225.  
  1226. tfJump.MouseButton1Down:connect(function()
  1227. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 75
  1228. end)
  1229.  
  1230. Njump.MouseButton1Down:connect(function()
  1231. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  1232. end)
  1233.  
  1234. GuardAreaTPbut.MouseButton1Down:connect(function()
  1235. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(802,99,2270)
  1236. end)
  1237.  
  1238. Respawn.MouseButton1Down:connect(function()
  1239. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, -496, 0)
  1240. end)
  1241.  
  1242. ObGuns.MouseButton1Down:connect(function()
  1243. for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  1244.  
  1245. OwO = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  1246. end
  1247. end)
  1248.  
  1249. TaseBypass.MouseButton1Down:connect(function()
  1250. game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = true
  1251. game.Players.LocalPlayer.CharacterAdded:connect(function()
  1252. game.Workspace:WaitForChild(game.Players.LocalPlayer.Name)
  1253. game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = true
  1254. end)
  1255. end)
  1256.  
  1257. RemoveDoors.MouseButton1Down:connect(function()
  1258. Workspace.Prison_Cellblock.doors:Destroy()
  1259.  
  1260. for i,v in pairs(workspace:GetChildren())do
  1261. if v.Name == "Doors" then
  1262. v:Destroy()
  1263. end
  1264. end
  1265. end)
  1266.  
  1267. Btools.MouseButton1Down:connect(function()
  1268. local tool1 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  1269. local tool2 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  1270. local tool3 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  1271. local tool4 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  1272. local tool5 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  1273. tool1.BinType = "Clone"
  1274. tool2.BinType = "GameTool"
  1275. tool3.BinType = "Hammer"
  1276. tool4.BinType = "Script"
  1277. tool5.BinType = "Grab"
  1278. end)
  1279.  
  1280. ModGun.MouseButton1Down:connect(function()
  1281. local m = require(game:GetService('Players').LocalPlayer.Character:FindFirstChildOfClass("Tool").GunStates)
  1282. m.Damage = 100
  1283. m.MaxAmmo = math.huge
  1284. m.CurrentAmmo = math.huge
  1285. m.AutoFire = true
  1286. m.FireRate = 0
  1287. end)
  1288.  
  1289. KillAll.MouseButton1Down:connect(function()
  1290.  
  1291. workspace.Remote.TeamEvent:FireServer("Medium stone grey")
  1292.  
  1293. game.Workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS.giver["Remington 870"].ITEMPICKUP)
  1294.  
  1295. wait(0.5)
  1296. function kill(a)
  1297. local A_1 =
  1298. {
  1299. [1] =
  1300. {
  1301. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-391.152252, 8.65560055, -83.2166901)),
  1302. ["Distance"] = 3.2524313926697,
  1303. ["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),
  1304. ["Hit"] = a.Character.Head
  1305. },
  1306. [2] =
  1307. {
  1308. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-392.481476, -8.44939327, -76.7261353)),
  1309. ["Distance"] = 3.2699294090271,
  1310. ["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),
  1311. ["Hit"] = a.Character.Head
  1312. },
  1313. [3] =
  1314. {
  1315. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-389.21701, -2.50536323, -92.2163162)),
  1316. ["Distance"] = 3.1665518283844,
  1317. ["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),
  1318. ["Hit"] = a.Character.Head
  1319. },
  1320. [4] =
  1321. {
  1322. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-393.353973, 3.13988972, -72.5452042)),
  1323. ["Distance"] = 3.3218522071838,
  1324. ["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),
  1325. ["Hit"] = a.Character.Head
  1326. },
  1327. [5] =
  1328. {
  1329. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-390.73172, 3.2097764, -85.5477524)),
  1330. ["Distance"] = 3.222757101059,
  1331. ["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),
  1332. ["Hit"] = a.Character.Head
  1333. }
  1334. }
  1335. local A_2 = game.Players.LocalPlayer.Backpack["Remington 870"]
  1336. local Event = game:GetService("ReplicatedStorage").ShootEvent
  1337. Event:FireServer(A_1, A_2)
  1338. Event:FireServer(A_1, A_2)
  1339. end
  1340.  
  1341. for i,v in pairs(game.Players:GetChildren())do
  1342. if v.Name ~= game.Players.LocalPlayer.Name then
  1343. kill(v)
  1344. end
  1345. end
  1346. wait(1)
  1347. workspace.Remote.TeamEvent:FireServer("Bright orange")
  1348.  
  1349. end)
  1350.  
  1351. TPshow.MouseButton1Down:connect(function()
  1352. tpgui.Visible = true
  1353. end)
  1354.  
  1355. TpHideButton.MouseButton1Down:connect(function()
  1356. tpgui.Visible = false
  1357. end)
  1358.  
  1359. TPYEET.MouseButton1Down:connect(function()
  1360. Target = InsertUserTP.Text
  1361.  
  1362. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[Target].Character.HumanoidRootPart.CFrame
  1363. end)
  1364.  
  1365. FLY.MouseButton1Down:connect(function()
  1366. repeat wait()
  1367. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  1368. local mouse = game.Players.LocalPlayer:GetMouse()
  1369. repeat wait() until mouse
  1370. local plr = game.Players.LocalPlayer
  1371. local torso = plr.Character.Torso
  1372. local flying = true
  1373. local deb = true
  1374. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  1375. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  1376. local maxspeed = 50
  1377. local speed = 0
  1378.  
  1379. function Fly()
  1380. local bg = Instance.new("BodyGyro", torso)
  1381. bg.P = 9e4
  1382. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  1383. bg.cframe = torso.CFrame
  1384. local bv = Instance.new("BodyVelocity", torso)
  1385. bv.velocity = Vector3.new(0,0.1,0)
  1386. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  1387. repeat wait()
  1388. plr.Character.Humanoid.PlatformStand = true
  1389. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  1390. speed = speed+.5+(speed/maxspeed)
  1391. if speed > maxspeed then
  1392. speed = maxspeed
  1393. end
  1394. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  1395. speed = speed-1
  1396. if speed < 0 then
  1397. speed = 0
  1398. end
  1399. end
  1400. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  1401. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  1402. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  1403. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  1404. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  1405. else
  1406. bv.velocity = Vector3.new(0,0.1,0)
  1407. end
  1408. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  1409. until not flying
  1410. ctrl = {f = 0, b = 0, l = 0, r = 0}
  1411. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  1412. speed = 0
  1413. bg:Destroy()
  1414. bv:Destroy()
  1415. plr.Character.Humanoid.PlatformStand = false
  1416. end
  1417. mouse.KeyDown:connect(function(key)
  1418. if key:lower() == "e" then
  1419. if flying then flying = false
  1420. else
  1421. flying = true
  1422. Fly()
  1423. end
  1424. elseif key:lower() == "w" then
  1425. ctrl.f = 1
  1426. elseif key:lower() == "s" then
  1427. ctrl.b = -1
  1428. elseif key:lower() == "a" then
  1429. ctrl.l = -1
  1430. elseif key:lower() == "d" then
  1431. ctrl.r = 1
  1432. end
  1433. end)
  1434. mouse.KeyUp:connect(function(key)
  1435. if key:lower() == "w" then
  1436. ctrl.f = 0
  1437. elseif key:lower() == "s" then
  1438. ctrl.b = 0
  1439. elseif key:lower() == "a" then
  1440. ctrl.l = 0
  1441. elseif key:lower() == "d" then
  1442. ctrl.r = 0
  1443. end
  1444. end)
  1445. Fly()
  1446. end)
  1447.  
  1448. SuperPunch.MouseButton1Down:connect(function()
  1449. mainRemotes = game.ReplicatedStorage
  1450. meleeRemote = mainRemotes['meleeEvent']
  1451. mouse = game.Players.LocalPlayer:GetMouse()
  1452. punching = false
  1453. cooldown = false
  1454.  
  1455. function punch()
  1456. cooldown = true
  1457. local part = Instance.new("Part", game.Players.LocalPlayer.Character)
  1458. part.Transparency = 1
  1459. part.Size = Vector3.new(5, 2, 3)
  1460. part.CanCollide = false
  1461. local w1 = Instance.new("Weld", part)
  1462. w1.Part0 = game.Players.LocalPlayer.Character.Torso
  1463. w1.Part1 = part
  1464. w1.C1 = CFrame.new(0,0,2)
  1465. part.Touched:connect(function(hit)
  1466. if game.Players:FindFirstChild(hit.Parent.Name) then
  1467. local plr = game.Players:FindFirstChild(hit.Parent.Name)
  1468. if plr.Name ~= game.Players.LocalPlayer.Name then
  1469. part:Destroy()
  1470.  
  1471. for i = 1,100 do
  1472. meleeRemote:FireServer(plr)
  1473. end
  1474. end
  1475. end
  1476. end)
  1477.  
  1478. wait(1)
  1479. cooldown = false
  1480. part:Destroy()
  1481. end
  1482.  
  1483.  
  1484. mouse.KeyDown:connect(function(key)
  1485. if cooldown == false then
  1486. if key:lower() == "f" then
  1487.  
  1488. punch()
  1489.  
  1490. end
  1491. end
  1492. end)
  1493. end)
  1494.  
  1495. BeInmate.MouseButton1Down:connect(function()
  1496. Workspace.Remote.TeamEvent:FireServer("Bright orange")
  1497. end)
  1498.  
  1499. BeGuard.MouseButton1Down:connect(function()
  1500. Workspace.Remote.TeamEvent:FireServer("Bright blue")
  1501. end)
  1502.  
  1503. BeCriminal.MouseButton1Down:connect(function()
  1504. LCS = game.Workspace["Criminals Spawn"].SpawnLocation
  1505.  
  1506. LCS.CanCollide = false
  1507. LCS.Size = Vector3.new(51.05, 24.12, 54.76)
  1508. LCS.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1509. LCS.Transparency = 1
  1510. wait(0.5)
  1511. LCS.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1512. LCS.Size = Vector3.new(6, 0.2, 6)
  1513. LCS.Transparency = 0
  1514. end)
  1515.  
  1516. InvGuns.MouseButton1Down:connect(function()
  1517. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetDescendants())do
  1518. if v.ClassName == "Model" then
  1519. v:Destroy()
  1520. end
  1521. end
  1522.  
  1523. game.Players.LocalPlayer.Backpack.M9.Part:Destroy()
  1524.  
  1525. game.Players.LocalPlayer.Backpack.M9.Part:Destroy()
  1526. end)
  1527.  
  1528. CrimPunch.MouseButton1Down:connect(function()
  1529. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren())do
  1530. if v.ClassName == "Tool" then
  1531. v:Destroy()
  1532. end
  1533. end
  1534. end)
  1535.  
  1536. BeNeutral.MouseButton1Down:connect(function()
  1537. Workspace.Remote.TeamEvent:FireServer("Medium stone grey")
  1538. end)
  1539.  
  1540. TeamOPorCL.MouseButton1Down:connect(function()
  1541. if TeamMain.Visible == true then
  1542.  
  1543. TeamMain:TweenPosition(UDim2.new(-0.00802327972, 0, 1.12121212, 0), 'Out', 'Bounce', 2)
  1544. wait(2)
  1545. TeamMain.Visible = false
  1546. elseif
  1547. TeamMain.Visible == false then
  1548. TeamMain:TweenPosition(UDim.new(-0.00802327972, 0, 5.12121212, 0), 'Out', 'Bounce', 2)
  1549. TeamMain.Visible = true
  1550. end
  1551. end)
  1552.  
  1553. local yee = false
  1554.  
  1555. SOC.MouseButton1Down:connect(function()
  1556. yee = true
  1557. wait(0.2)
  1558. if yee == true then
  1559. LCS = game.Workspace["Criminals Spawn"].SpawnLocation
  1560.  
  1561. LCS.CanCollide = false
  1562. LCS.Size = Vector3.new(51.05, 24.12, 54.76)
  1563. LCS.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1564. LCS.Transparency = 1
  1565. wait(0.5)
  1566. while yee do
  1567. wait(0.003)
  1568. LCS.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1569. end
  1570. LCS.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1571. LCS.Size = Vector3.new(6, 0.2, 6)
  1572. LCS.Transparency = 1
  1573. wait(2)
  1574. LCS.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1575. LCS.Size = Vector3.new(6, 0.2, 6)
  1576. LCS.Transparency = 1
  1577. end
  1578. end)
  1579.  
  1580. local GuTe = false
  1581.  
  1582. SOG.MouseButton1Down:connect(function()
  1583. if GuTe == false then
  1584. GuTe = true
  1585. if GuTe == true then
  1586. while GuTe do
  1587. wait(0.2)
  1588. Workspace.Remote.TeamEvent:FireServer("Bright blue")
  1589. end
  1590. end
  1591. end
  1592. end)
  1593.  
  1594. local InTe = false
  1595.  
  1596. SOI.MouseButton1Down:connect(function()
  1597. if InTe == false then
  1598. InTe = true
  1599. if InTe == true then
  1600. wait(0.2)
  1601. workspace.Remote.TeamEvent:FireServer("Bright orange")
  1602. end
  1603. end
  1604. end)
  1605.  
  1606. Disable.MouseButton1Down:connect(function()
  1607. InTe = false
  1608.  
  1609. GuTe = false
  1610.  
  1611. yee = false
  1612. wait(0.2)
  1613. if yee == false then
  1614. LCS.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1615. LCS.Size = Vector3.new(6, 0.2, 6)
  1616. LCS.Transparency = 1
  1617. wait(2)
  1618. LCS.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1619. LCS.Size = Vector3.new(6, 0.2, 6)
  1620. LCS.Transparency = 1
  1621. end
  1622. end)
  1623.  
  1624. Trans.MouseButton1Down:connect(function()
  1625. PLMain = Main
  1626. PLCgui = ForceCgui
  1627. PLLc = LocalCommands
  1628. PLtp = tpgui
  1629. TMain = TeamMain
  1630.  
  1631. TLble = TitleBar
  1632. LCTitleBar = LocalCMD_BarTitle
  1633. LCTitle = LocalCMD_Title
  1634.  
  1635. if LCTitle.BackgroundTransparency == 0 then
  1636. LCTitle.BackgroundTransparency = 0.5
  1637. elseif
  1638. LCTitle.BackgroundTransparency == 0.5 then
  1639. LCTitle.BackgroundTransparency = 0
  1640. end
  1641.  
  1642. if LCTitleBar.BackgroundTransparency == 0 then
  1643. LCTitleBar.BackgroundTransparency = 0.5
  1644. elseif
  1645. LCTitleBar.BackgroundTransparency == 0.5 then
  1646. LCTitleBar.BackgroundTransparency = 0
  1647. end
  1648.  
  1649. if TLble.BackgroundTransparency == 0.8 then
  1650. TLble.BackgroundTransparency = 0.5
  1651. elseif
  1652. TLble.BackgroundTransparency == 0.5 then
  1653. TLble.BackgroundTransparency = 0.8
  1654. end
  1655.  
  1656. if PLMain.BackgroundTransparency == 0 then
  1657. PLMain.BackgroundTransparency = 0.5
  1658. elseif
  1659. PLMain.BackgroundTransparency == 0.5 then
  1660. PLMain.BackgroundTransparency = 0
  1661. end
  1662.  
  1663. if PLCgui.BackgroundTransparency == 0 then
  1664. PLCgui.BackgroundTransparency = 0.5
  1665. elseif
  1666. PLCgui.BackgroundTransparency == 0.5 then
  1667. PLCgui.BackgroundTransparency = 0
  1668. end
  1669.  
  1670. if PLLc.BackgroundTransparency == 0 then
  1671. PLLc.BackgroundTransparency = 0.5
  1672. elseif
  1673. PLLc.BackgroundTransparency == 0.5 then
  1674. PLLc.BackgroundTransparency = 0
  1675. end
  1676.  
  1677. if PLtp.BackgroundTransparency == 0 then
  1678. PLtp.BackgroundTransparency = 0.5
  1679. elseif
  1680. PLtp.BackgroundTransparency == 0.5 then
  1681. PLtp.BackgroundTransparency = 0
  1682. end
  1683.  
  1684. if TMain.BackgroundTransparency == 0 then
  1685. TMain.BackgroundTransparency = 0.5
  1686. elseif
  1687. TMain.BackgroundTransparency == 0.5 then
  1688. TMain.BackgroundTransparency = 0
  1689. end
  1690. end)
  1691.  
  1692. ArrestAll.MouseButton1Down:connect(function()
  1693. wait(0.1)
  1694. Player = game.Players.LocalPlayer
  1695. Pcf = Player.Character.HumanoidRootPart.CFrame
  1696. for i,v in pairs(game.Teams.Criminals:GetPlayers()) do
  1697. if v.Name ~= Player.Name then
  1698. local i = 10
  1699. repeat
  1700. wait()
  1701. i = i-1
  1702. game.Workspace.Remote.arrest:InvokeServer(v.Character.HumanoidRootPart)
  1703. Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  1704. until i == 0
  1705. end
  1706. end
  1707. end)
  1708.  
  1709. KillAura.MouseButton1Down:connect(function()
  1710. TrueOrFalse.Text = "FALSE"
  1711. TrueOrFalse.TextColor3 = Color3.new(0.768628, 0.156863, 0.109804)
  1712.  
  1713. mainRemotes = game.ReplicatedStorage
  1714. meleeRemote = mainRemotes['meleeEvent']
  1715.  
  1716. _G.killAura = false
  1717.  
  1718. contextactionservice = game.ContextActionService
  1719.  
  1720. function toggleKillAura(actionName, inputState, inputObject)
  1721. if inputState == Enum.UserInputState.Begin then
  1722. if _G.killAura == true then
  1723. _G.killAura = false
  1724. TrueOrFalse.Text = "FALSE"
  1725. TrueOrFalse.TextColor3 = Color3.new(0.768628, 0.156863, 0.109804)
  1726. else
  1727. _G.killAura = true
  1728. TrueOrFalse.Text = "TRUE"
  1729. TrueOrFalse.TextColor3 = Color3.new(0.6, 0.992157, 0.541176)
  1730. end
  1731. end
  1732. end
  1733.  
  1734.  
  1735.  
  1736. contextactionservice:BindAction('ToggleKillAura', toggleKillAura, false, Enum.KeyCode.P)
  1737.  
  1738. while wait() do
  1739. if _G.killAura == true then
  1740. for _, plr in pairs (game:GetService('Players'):GetChildren()) do
  1741. if plr.Name ~= game.Players.LocalPlayer.Name then
  1742. meleeRemote:FireServer(plr)
  1743.  
  1744. end
  1745. end
  1746. end
  1747. end
  1748. end)
  1749.  
  1750. local istptoplr = false
  1751. local metoplr = false
  1752.  
  1753. TextButton.MouseButton1Down:connect(function()
  1754. Target = InsertUser.Text
  1755.  
  1756. _G.killAura = true
  1757. wait(0.2)
  1758.  
  1759. Apart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1760. Apart.Transparency = 1
  1761. Apart.Anchored = true
  1762. Apart.CanCollide = false
  1763. wait(0.3)
  1764. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[Target].Character.HumanoidRootPart.CFrame
  1765.  
  1766. istptoplr = true
  1767. wait(0.004)
  1768.  
  1769. if game.Players.LocalPlayer.Team.TeamColor == "Bright orange" then
  1770. wait(6)
  1771. workspace.Remote.TeamEvent:FireServer("Bright orange")
  1772. elseif
  1773. game.Players.LocalPlayer.Team.TeamColor == "Bright blue" then
  1774. workspace.Remote.TeamEvent:FireServer("Bright blue")
  1775. end
  1776.  
  1777. if istptoplr == true then
  1778. while istptoplr do
  1779. wait()
  1780.  
  1781. game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = game.Players[Target].Character.HumanoidRootPart.CFrame
  1782.  
  1783. LCS = game.Workspace["Criminals Spawn"].SpawnLocation
  1784.  
  1785. LCS.CanCollide = false
  1786. LCS.Size = Vector3.new(51.05, 24.12, 54.76)
  1787. LCS.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1788. LCS.Transparency = 1
  1789.  
  1790. wait(2)
  1791.  
  1792. istptoplr = false
  1793. _G.killAura = false
  1794.  
  1795. wait(0.04)
  1796.  
  1797. if istptoplr == false then
  1798. LCS.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1799. LCS.Size = Vector3.new(6, 0.2, 6)
  1800. LCS.Transparency = 0
  1801. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Apart.CFrame
  1802. wait()
  1803. istptoplr = false
  1804. end
  1805. end
  1806. end
  1807. end)
  1808.  
  1809. TeamOPorCL:Destroy()
  1810.  
  1811.  
  1812. function dragify(Main)
  1813. dragToggle = nil
  1814. dragSpeed = .20 -- You can edit this.
  1815. dragInput = nil
  1816. dragStart = nil
  1817. dragPos = nil
  1818.  
  1819. function updateInput(input)
  1820. Delta = input.Position - dragStart
  1821. Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + Delta.X, startPos.Y.Scale, startPos.Y.Offset + Delta.Y)
  1822. game:GetService("TweenService"):Create(Main, TweenInfo.new(.25), {Position = Position}):Play()
  1823. end
  1824.  
  1825. Main.InputBegan:Connect(function(input)
  1826. if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then
  1827. dragToggle = true
  1828. dragStart = input.Position
  1829. startPos = Main.Position
  1830. input.Changed:Connect(function()
  1831. if (input.UserInputState == Enum.UserInputState.End) then
  1832. dragToggle = false
  1833. end
  1834. end)
  1835. end
  1836. end)
  1837.  
  1838. Main.InputChanged:Connect(function(input)
  1839. if (input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch) then
  1840. dragInput = input
  1841. end
  1842. end)
  1843.  
  1844. game:GetService("UserInputService").InputChanged:Connect(function(input)
  1845. if (input == dragInput and dragToggle) then
  1846. updateInput(input)
  1847. end
  1848. end)
  1849. end
  1850.  
  1851. dragify(Main)
  1852. end)
  1853.  
  1854. comingsoon2.Name = "kataimbot"
  1855. comingsoon2.Parent = Main
  1856. comingsoon2.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  1857. comingsoon2.BorderSizePixel = 0
  1858. comingsoon2.Position = UDim2.new(0.701631725, 0, 0.467532456, 0)
  1859. comingsoon2.Size = UDim2.new(0, 107, 0, 40)
  1860. comingsoon2.Font = Enum.Font.SourceSans
  1861. comingsoon2.Text = "K.A.T Aimbot"
  1862. comingsoon2.TextColor3 = Color3.fromRGB(255, 255, 255)
  1863. comingsoon2.TextSize = 14.000
  1864. comingsoon2.MouseButton1Down:connect(function()
  1865. PLAYER = game.Players.LocalPlayer
  1866. MOUSE = PLAYER:GetMouse()
  1867. CC = game.Workspace.CurrentCamera
  1868.  
  1869. ENABLED = false
  1870. ESP_ENABLED = false
  1871.  
  1872. _G.FREE_FOR_ALL = true
  1873.  
  1874. _G.BIND = 50
  1875. _G.ESP_BIND = 52
  1876. _G.CHANGE_AIM = 'q'
  1877.  
  1878. _G.AIM_AT = 'Head'
  1879.  
  1880. wait(1)
  1881.  
  1882. function GetNearestPlayerToMouse()
  1883. local PLAYERS = {}
  1884. local PLAYER_HOLD = {}
  1885. local DISTANCES = {}
  1886. for i, v in pairs(game.Players:GetPlayers()) do
  1887. if v ~= PLAYER then
  1888. table.insert(PLAYERS, v)
  1889. end
  1890. end
  1891. for i, v in pairs(PLAYERS) do
  1892. if _G.FREE_FOR_ALL == false then
  1893. if v and (v.Character) ~= nil and v.TeamColor ~= PLAYER.TeamColor then
  1894. local AIM = v.Character:FindFirstChild(_G.AIM_AT)
  1895. if AIM ~= nil then
  1896. local DISTANCE = (AIM.Position - game.Workspace.CurrentCamera.CoordinateFrame.p).magnitude
  1897. local RAY = Ray.new(game.Workspace.CurrentCamera.CoordinateFrame.p, (MOUSE.Hit.p - CC.CoordinateFrame.p).unit * DISTANCE)
  1898. local HIT,POS = game.Workspace:FindPartOnRay(RAY, game.Workspace)
  1899. local DIFF = math.floor((POS - AIM.Position).magnitude)
  1900. PLAYER_HOLD[v.Name .. i] = {}
  1901. PLAYER_HOLD[v.Name .. i].dist = DISTANCE
  1902. PLAYER_HOLD[v.Name .. i].plr = v
  1903. PLAYER_HOLD[v.Name .. i].diff = DIFF
  1904. table.insert(DISTANCES, DIFF)
  1905. end
  1906. end
  1907. elseif _G.FREE_FOR_ALL == true then
  1908. local AIM = v.Character:FindFirstChild(_G.AIM_AT)
  1909. if AIM ~= nil then
  1910. local DISTANCE = (AIM.Position - game.Workspace.CurrentCamera.CoordinateFrame.p).magnitude
  1911. local RAY = Ray.new(game.Workspace.CurrentCamera.CoordinateFrame.p, (MOUSE.Hit.p - CC.CoordinateFrame.p).unit * DISTANCE)
  1912. local HIT,POS = game.Workspace:FindPartOnRay(RAY, game.Workspace)
  1913. local DIFF = math.floor((POS - AIM.Position).magnitude)
  1914. PLAYER_HOLD[v.Name .. i] = {}
  1915. PLAYER_HOLD[v.Name .. i].dist = DISTANCE
  1916. PLAYER_HOLD[v.Name .. i].plr = v
  1917. PLAYER_HOLD[v.Name .. i].diff = DIFF
  1918. table.insert(DISTANCES, DIFF)
  1919. end
  1920. end
  1921. end
  1922.  
  1923. if unpack(DISTANCES) == nil then
  1924. return false
  1925. end
  1926.  
  1927. local L_DISTANCE = math.floor(math.min(unpack(DISTANCES)))
  1928. if L_DISTANCE > 20 then
  1929. return false
  1930. end
  1931.  
  1932. for i, v in pairs(PLAYER_HOLD) do
  1933. if v.diff == L_DISTANCE then
  1934. return v.plr
  1935. end
  1936. end
  1937. return false
  1938. end
  1939.  
  1940. GUI_MAIN = Instance.new('ScreenGui', game.CoreGui)
  1941. GUI_TARGET = Instance.new('TextLabel', GUI_MAIN)
  1942. GUI_AIM_AT = Instance.new('TextLabel', GUI_MAIN)
  1943.  
  1944. GUI_MAIN.Name = 'AIMBOT'
  1945.  
  1946. GUI_TARGET.Size = UDim2.new(0,200,0,30)
  1947. GUI_TARGET.BackgroundTransparency = 0.5
  1948. GUI_TARGET.BackgroundColor = BrickColor.new('Fossil')
  1949. GUI_TARGET.BorderSizePixel = 0
  1950. GUI_TARGET.Position = UDim2.new(0.5,-100,0,0)
  1951. GUI_TARGET.Text = 'AIMBOT : OFF'
  1952. GUI_TARGET.TextColor3 = Color3.new(1,1,1)
  1953. GUI_TARGET.TextStrokeTransparency = 1
  1954. GUI_TARGET.TextWrapped = true
  1955. GUI_TARGET.FontSize = 'Size24'
  1956. GUI_TARGET.Font = 'SourceSansBold'
  1957.  
  1958. GUI_AIM_AT.Size = UDim2.new(0,200,0,20)
  1959. GUI_AIM_AT.BackgroundTransparency = 0.5
  1960. GUI_AIM_AT.BackgroundColor = BrickColor.new('Fossil')
  1961. GUI_AIM_AT.BorderSizePixel = 0
  1962. GUI_AIM_AT.Position = UDim2.new(0.5,-100,0,30)
  1963. GUI_AIM_AT.Text = 'AIMING : HEAD'
  1964. GUI_AIM_AT.TextColor3 = Color3.new(1,1,1)
  1965. GUI_AIM_AT.TextStrokeTransparency = 1
  1966. GUI_AIM_AT.TextWrapped = true
  1967. GUI_AIM_AT.FontSize = 'Size18'
  1968. GUI_AIM_AT.Font = 'SourceSansBold'
  1969.  
  1970. local TRACK = false
  1971.  
  1972. function CREATE(BASE, TEAM)
  1973. local ESP_MAIN = Instance.new('BillboardGui', PLAYER.PlayerGui)
  1974. local ESP_DOT = Instance.new('Frame', ESP_MAIN)
  1975. local ESP_NAME = Instance.new('TextLabel', ESP_MAIN)
  1976.  
  1977. ESP_MAIN.Name = 'ESP'
  1978. ESP_MAIN.Adornee = BASE
  1979. ESP_MAIN.AlwaysOnTop = true
  1980. ESP_MAIN.ExtentsOffset = Vector3.new(0, 1, 0)
  1981. ESP_MAIN.Size = UDim2.new(0, 5, 0, 5)
  1982.  
  1983. ESP_DOT.Name = 'DOT'
  1984. ESP_DOT.BackgroundColor = BrickColor.new('Bright red')
  1985. ESP_DOT.BackgroundTransparency = 0.3
  1986. ESP_DOT.BorderSizePixel = 0
  1987. ESP_DOT.Position = UDim2.new(-0.5, 0, -0.5, 0)
  1988. ESP_DOT.Size = UDim2.new(2, 0, 2, 0)
  1989. ESP_DOT.Visible = true
  1990. ESP_DOT.ZIndex = 10
  1991.  
  1992. ESP_NAME.Name = 'NAME'
  1993. ESP_NAME.BackgroundColor3 = Color3.new(255, 255, 255)
  1994. ESP_NAME.BackgroundTransparency = 1
  1995. ESP_NAME.BorderSizePixel = 0
  1996. ESP_NAME.Position = UDim2.new(0, 0, 0, -40)
  1997. ESP_NAME.Size = UDim2.new(1, 0, 10, 0)
  1998. ESP_NAME.Visible = true
  1999. ESP_NAME.ZIndex = 10
  2000. ESP_NAME.Font = 'ArialBold'
  2001. ESP_NAME.FontSize = 'Size14'
  2002. ESP_NAME.Text = BASE.Parent.Name:upper()
  2003. ESP_NAME.TextColor = BrickColor.new('Bright red')
  2004. end
  2005.  
  2006. function CLEAR()
  2007. for _,v in pairs(PLAYER.PlayerGui:children()) do
  2008. if v.Name == 'ESP' and v:IsA('BillboardGui') then
  2009. v:Destroy()
  2010. end
  2011. end
  2012. end
  2013.  
  2014. function FIND()
  2015. CLEAR()
  2016. TRACK = true
  2017. spawn(function()
  2018. while wait() do
  2019. if TRACK then
  2020. CLEAR()
  2021. for i,v in pairs(game.Players:GetChildren()) do
  2022. if v.Character and v.Character:FindFirstChild('Head') then
  2023. if _G.FREE_FOR_ALL == false then
  2024. if v.TeamColor ~= PLAYER.TeamColor then
  2025. if v.Character:FindFirstChild('Head') then
  2026. CREATE(v.Character.Head, true)
  2027. end
  2028. end
  2029. else
  2030. if v.Character:FindFirstChild('Head') then
  2031. CREATE(v.Character.Head, true)
  2032. end
  2033. end
  2034. end
  2035. end
  2036. end
  2037. end
  2038. wait(1)
  2039. end)
  2040. end
  2041.  
  2042. MOUSE.KeyDown:connect(function(KEY)
  2043. KEY = KEY:lower():byte()
  2044. if KEY == _G.BIND then
  2045. ENABLED = true
  2046. end
  2047. end)
  2048.  
  2049. MOUSE.KeyUp:connect(function(KEY)
  2050. KEY = KEY:lower():byte()
  2051. if KEY == _G.BIND then
  2052. ENABLED = false
  2053. end
  2054. end)
  2055.  
  2056. MOUSE.KeyDown:connect(function(KEY)
  2057. KEY = KEY:lower():byte()
  2058. if KEY == _G.ESP_BIND then
  2059. if ESP_ENABLED == false then
  2060. FIND()
  2061. ESP_ENABLED = true
  2062. print('ESP : ON')
  2063. elseif ESP_ENABLED == true then
  2064. wait()
  2065. CLEAR()
  2066. TRACK = false
  2067. ESP_ENABLED = true
  2068. print('ESP : OFF')
  2069. end
  2070. end
  2071. end)
  2072.  
  2073. MOUSE.KeyDown:connect(function(KEY)
  2074. if KEY == _G.CHANGE_AIM then
  2075. if _G.AIM_AT == 'Head' then
  2076. _G.AIM_AT = 'Torso'
  2077. GUI_AIM_AT.Text = 'AIMING : TORSO'
  2078. elseif _G.AIM_AT == 'Torso' then
  2079. _G.AIM_AT = 'Head'
  2080. GUI_AIM_AT.Text = 'AIMING : HEAD'
  2081. end
  2082. end
  2083. end)
  2084.  
  2085. game:GetService('RunService').RenderStepped:connect(function()
  2086. if ENABLED then
  2087. local TARGET = GetNearestPlayerToMouse()
  2088. if (TARGET ~= false) then
  2089. local AIM = TARGET.Character:FindFirstChild(_G.AIM_AT)
  2090. if AIM then
  2091. CC.CoordinateFrame = CFrame.new(CC.CoordinateFrame.p, AIM.CFrame.p)
  2092. end
  2093. GUI_TARGET.Text = 'AIMBOT : '.. TARGET.Name:sub(1, 5)
  2094. else
  2095. GUI_TARGET.Text = 'AIMBOT : OFF'
  2096. end
  2097. end
  2098. end)
  2099.  
  2100. repeat
  2101. wait()
  2102. if ESP_ENABLED == true then
  2103. FIND()
  2104. end
  2105. until ESP_ENABLED == false
  2106. wait()
  2107. _G.FREE_FOR_ALL = true
  2108. _G.BIND = 50 -- LEFT CTRL
  2109. _G.ESP_BIND = 52 -- LEFT ALT
  2110. end)
  2111.  
  2112. comingsoon3.Name = "forcefield"
  2113. comingsoon3.Parent = Main
  2114. comingsoon3.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  2115. comingsoon3.BorderSizePixel = 0
  2116. comingsoon3.Position = UDim2.new(0.0719636381, 0, 0.467532456, 0)
  2117. comingsoon3.Size = UDim2.new(0, 107, 0, 40)
  2118. comingsoon3.Font = Enum.Font.SourceSans
  2119. comingsoon3.Text = "Force Field"
  2120. comingsoon3.TextColor3 = Color3.fromRGB(255, 255, 255)
  2121. comingsoon3.TextSize = 14.000
  2122. comingsoon3.MouseButton1Down:connect(function()
  2123. Instance.new("ForceField",game.Players.LocalPlayer.Character)
  2124. end)
  2125.  
  2126. comingsoon4.Name = "noclip"
  2127. comingsoon4.Parent = Main
  2128. comingsoon4.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  2129. comingsoon4.BorderSizePixel = 0
  2130. comingsoon4.Position = UDim2.new(0.0719636381, 0, 0.722943723, 0)
  2131. comingsoon4.Size = UDim2.new(0, 107, 0, 40)
  2132. comingsoon4.Font = Enum.Font.SourceSans
  2133. comingsoon4.Text = "Noclip V"
  2134. comingsoon4.TextColor3 = Color3.fromRGB(255, 255, 255)
  2135. comingsoon4.TextSize = 14.000
  2136. comingsoon4.MouseButton1Down:connect(function()
  2137. noclip = false
  2138. game:GetService('RunService').Stepped:connect(function()
  2139. if noclip then
  2140. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  2141. end
  2142. end)
  2143. Player = game.Players.LocalPlayer
  2144. mouse = Player:GetMouse()
  2145. mouse.KeyDown:connect(function(key)
  2146.  
  2147. if key == "v" then
  2148. noclip = not noclip
  2149. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  2150. end
  2151. end)
  2152. print('Loaded')
  2153. print('Press "V" to noclip')
  2154. end)
  2155.  
  2156. comingsoon5.Name = "comingsoon5"
  2157. comingsoon5.Parent = Main
  2158. comingsoon5.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  2159. comingsoon5.BorderSizePixel = 0
  2160. comingsoon5.Position = UDim2.new(0.387843698, 0, 0.722943723, 0)
  2161. comingsoon5.Size = UDim2.new(0, 107, 0, 40)
  2162. comingsoon5.Font = Enum.Font.SourceSans
  2163. comingsoon5.Text = "Coming Soon!"
  2164. comingsoon5.TextColor3 = Color3.fromRGB(255, 255, 255)
  2165. comingsoon5.TextSize = 14.000
  2166.  
  2167. NameGui.Name = "NameGui"
  2168. NameGui.Parent = Main
  2169. NameGui.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2170. NameGui.BackgroundTransparency = 1.000
  2171. NameGui.Position = UDim2.new(0.234309629, 0, -0.00380228134, 0)
  2172. NameGui.Size = UDim2.new(0, 253, 0, 50)
  2173. NameGui.Font = Enum.Font.SciFi
  2174. NameGui.Text = "DeV GUI 1.1"
  2175. NameGui.TextColor3 = Color3.fromRGB(71, 40, 64)
  2176. NameGui.TextSize = 50.000
  2177.  
  2178. close.Name = "close"
  2179. close.Parent = Main
  2180. close.BackgroundColor3 = Color3.fromRGB(255, 7, 73)
  2181. close.Position = UDim2.new(0.0125523014, 0, 0.0380228125, 0)
  2182. close.Size = UDim2.new(0, 28, 0, 29)
  2183. close.Font = Enum.Font.SourceSans
  2184. close.Text = "X"
  2185. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  2186. close.TextScaled = true
  2187. close.TextSize = 14.000
  2188. close.TextWrapped = true
  2189. close.MouseButton1Down:connect(function()
  2190. Main.Visible = false
  2191. Close.Visible = true
  2192. end)
  2193.  
  2194. Credits.Name = "Credits"
  2195. Credits.Parent = Main
  2196. Credits.BackgroundColor3 = Color3.fromRGB(77, 44, 81)
  2197. Credits.BackgroundTransparency = 1.000
  2198. Credits.BorderSizePixel = 0
  2199. Credits.Position = UDim2.new(0.669456065, 0, 0.771863103, 0)
  2200. Credits.Size = UDim2.new(0, 136, 0, 39)
  2201. Credits.Font = Enum.Font.Gotham
  2202. Credits.Text = "By RedRiderCz"
  2203. Credits.TextColor3 = Color3.fromRGB(71, 13, 68)
  2204. Credits.TextScaled = true
  2205. Credits.TextSize = 21.000
  2206. Credits.TextWrapped = true
  2207.  
  2208. Close.Name = "Close"
  2209. Close.Parent = DeVGUI
  2210. Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2211. Close.BackgroundTransparency = 1.000
  2212. Close.Position = UDim2.new(0.0228102189, 0, 0.569186032, 0)
  2213. Close.Size = UDim2.new(0, 104, 0, 40)
  2214. Close.Visible = false
  2215.  
  2216. OpenRoundStyle.Name = "OpenRoundStyle"
  2217. OpenRoundStyle.Parent = Close
  2218. OpenRoundStyle.BackgroundColor3 = Color3.fromRGB(66, 66, 66)
  2219. OpenRoundStyle.BorderColor3 = Color3.fromRGB(38, 38, 38)
  2220. OpenRoundStyle.BorderSizePixel = 3
  2221. OpenRoundStyle.Position = UDim2.new(0.00672519207, 0, 0.0230481923, 0)
  2222. OpenRoundStyle.Size = UDim2.new(0, 102, 0, 39)
  2223.  
  2224. OpenButton.Name = "OpenButton"
  2225. OpenButton.Parent = Close
  2226. OpenButton.BackgroundColor3 = Color3.fromRGB(66, 66, 66)
  2227. OpenButton.BorderColor3 = Color3.fromRGB(38, 38, 38)
  2228. OpenButton.BorderSizePixel = 3
  2229. OpenButton.Position = UDim2.new(0.00252518291, 0, 0, 0)
  2230. OpenButton.Size = UDim2.new(0, 102, 0, 40)
  2231. OpenButton.Font = Enum.Font.SciFi
  2232. OpenButton.Text = "OPEN"
  2233. OpenButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  2234. OpenButton.TextScaled = true
  2235. OpenButton.TextSize = 14.000
  2236. OpenButton.TextWrapped = true
  2237. OpenButton.MouseButton1Down:connect(function()
  2238. Close.Visible = false
  2239. Main.Visible = true
  2240. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement