Advertisement
Xfer1111

Project Lazarus OP Script

Aug 10th, 2020
10,754
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 42.65 KB | None | 0 0
  1. -- Not made by me, Credits to the original owner.
  2. -- Xfer was here (T.V.K)
  3.  
  4. local PLGUI = Instance.new("ScreenGui")
  5. local Topframe = Instance.new("Frame")
  6. local Mainframe = Instance.new("Frame")
  7. local NameFrame = Instance.new("Frame")
  8. local LocalNameBox = Instance.new("TextBox")
  9. local ContinueButton = Instance.new("TextButton")
  10. local FuncFrame = Instance.new("Frame")
  11. local InputBox = Instance.new("TextBox")
  12. local GotoPlayer = Instance.new("TextButton")
  13. local OPGun = Instance.new("TextButton")
  14. local Power = Instance.new("TextButton")
  15. local AnnoyPlayers = Instance.new("TextButton")
  16. local zESP = Instance.new("TextButton")
  17. local Walkspeed = Instance.new("TextButton")
  18. local InfiniteAmmo = Instance.new("TextButton")
  19. local BringZHeads = Instance.new("TextButton")
  20. local Jumppower = Instance.new("TextButton")
  21. local PowerupFrame = Instance.new("Frame")
  22. local Juggernog = Instance.new("TextButton")
  23. local QuickRevive = Instance.new("TextButton")
  24. local SpeedCola = Instance.new("TextButton")
  25. local DoubleTap = Instance.new("TextButton")
  26. local MuleKick = Instance.new("TextButton")
  27. local TPframe = Instance.new("Frame")
  28. local Lobby = Instance.new("TextButton")
  29. local Spawn = Instance.new("TextButton")
  30. local PowerRoom = Instance.new("TextButton")
  31. local Library = Instance.new("TextButton")
  32. local BuildingTop = Instance.new("TextButton")
  33. local CenterYard = Instance.new("TextButton")
  34. local BarrierBack1 = Instance.new("TextButton")
  35. local Bathroom = Instance.new("TextButton")
  36. local BackYard = Instance.new("TextButton")
  37. local BarrierBack3 = Instance.new("TextButton")
  38. local BarrierBack4 = Instance.new("TextButton")
  39. local BarrierBack2 = Instance.new("TextButton")
  40. local Close = Instance.new("TextButton")
  41. local TextLabel = Instance.new("TextLabel")
  42. local Options = Instance.new("TextButton")
  43. local OptionsFrame = Instance.new("Frame")
  44. local TeleportsTab = Instance.new("TextButton")
  45. local PowerupTab = Instance.new("TextButton")
  46. local FunctionTab = Instance.new("TextButton")
  47. local ConsoleTab = Instance.new("TextButton")
  48. local KeybindsTab = Instance.new("TextButton")
  49. local ConsoleFrame = Instance.new("Frame")
  50. local ConsoleLabel = Instance.new("TextLabel")
  51. local ConsoleInfoLabel = Instance.new("TextLabel")
  52. local KeybindFrame = Instance.new("Frame")
  53. local KeybindLabel = Instance.new("TextLabel")
  54. local KeybindLabel_2 = Instance.new("TextLabel")
  55. local KeybindLabel_3 = Instance.new("TextLabel")
  56. local KeybindLabel_4 = Instance.new("TextLabel")
  57. local KeybindLabel_5 = Instance.new("TextLabel")
  58. local KeybindInfo = Instance.new("TextLabel")
  59. local KeybindInfo_2 = Instance.new("TextLabel")
  60. local KeybindInfo_3 = Instance.new("TextLabel")
  61. local KeybindInfo_4 = Instance.new("TextLabel")
  62. local KeybindInfo_5 = Instance.new("TextLabel")
  63. local KeybindInfo_6 = Instance.new("TextLabel")
  64. local KeybindLabel_6 = Instance.new("TextLabel")
  65.  
  66. -- Properties
  67.  
  68. PLGUI.Name = "PLGUI"
  69. PLGUI.Parent = game.CoreGui
  70. PLGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  71.  
  72. Topframe.Name = "Topframe"
  73. Topframe.Parent = PLGUI
  74. Topframe.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  75. Topframe.BorderColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  76. Topframe.BorderSizePixel = 0
  77. Topframe.Position = UDim2.new(0.242253512, 0, 0.195530728, 0)
  78. Topframe.Size = UDim2.new(0, 273, 0, 24)
  79.  
  80. Mainframe.Name = "Mainframe"
  81. Mainframe.Parent = Topframe
  82. Mainframe.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  83. Mainframe.BorderColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  84. Mainframe.BorderSizePixel = 0
  85. Mainframe.Position = UDim2.new(0, 0, 0.988615692, 0)
  86. Mainframe.Size = UDim2.new(0, 273, 0, 156)
  87.  
  88. NameFrame.Name = "NameFrame"
  89. NameFrame.Parent = Mainframe
  90. NameFrame.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  91. NameFrame.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  92. NameFrame.Position = UDim2.new(0.0183150209, 0, 0.0273924619, 0)
  93. NameFrame.Size = UDim2.new(0, 263, 0, 146)
  94.  
  95. LocalNameBox.Name = "LocalNameBox"
  96. LocalNameBox.Parent = NameFrame
  97. LocalNameBox.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  98. LocalNameBox.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  99. LocalNameBox.Position = UDim2.new(0.0380228162, 0, 0.102739729, 0)
  100. LocalNameBox.Size = UDim2.new(0, 242, 0, 34)
  101. LocalNameBox.Font = Enum.Font.SourceSans
  102. LocalNameBox.Text = "Enter your username here"
  103. LocalNameBox.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  104. LocalNameBox.TextSize = 14
  105.  
  106. ContinueButton.Name = "ContinueButton"
  107. ContinueButton.Parent = NameFrame
  108. ContinueButton.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  109. ContinueButton.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  110. ContinueButton.Position = UDim2.new(0.228136882, 0, 0.623287678, 0)
  111. ContinueButton.Size = UDim2.new(0, 141, 0, 32)
  112. ContinueButton.Font = Enum.Font.SourceSans
  113. ContinueButton.Text = "Continue"
  114. ContinueButton.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  115. ContinueButton.TextSize = 14
  116.  
  117. FuncFrame.Name = "FuncFrame"
  118. FuncFrame.Parent = Mainframe
  119. FuncFrame.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  120. FuncFrame.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  121. FuncFrame.Position = UDim2.new(0.0183150209, 0, 0.0273924619, 0)
  122. FuncFrame.Size = UDim2.new(0, 263, 0, 146)
  123. FuncFrame.Visible = false
  124.  
  125. InputBox.Name = "InputBox"
  126. InputBox.Parent = FuncFrame
  127. InputBox.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  128. InputBox.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  129. InputBox.Position = UDim2.new(0.0380228125, 0, 0.0616438314, 0)
  130. InputBox.Size = UDim2.new(0, 242, 0, 26)
  131. InputBox.Font = Enum.Font.SourceSans
  132. InputBox.Text = "Input (name/number)"
  133. InputBox.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  134. InputBox.TextSize = 14
  135.  
  136. GotoPlayer.Name = "GotoPlayer"
  137. GotoPlayer.Parent = FuncFrame
  138. GotoPlayer.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  139. GotoPlayer.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  140. GotoPlayer.Position = UDim2.new(0.0380227566, 0, 0.33561644, 0)
  141. GotoPlayer.Size = UDim2.new(0, 75, 0, 25)
  142. GotoPlayer.Font = Enum.Font.SourceSans
  143. GotoPlayer.Text = "Goto Player"
  144. GotoPlayer.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  145. GotoPlayer.TextSize = 14
  146.  
  147. OPGun.Name = "OPGun"
  148. OPGun.Parent = FuncFrame
  149. OPGun.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  150. OPGun.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  151. OPGun.Position = UDim2.new(0.0380227566, 0, 0.55577296, 0)
  152. OPGun.Size = UDim2.new(0, 75, 0, 25)
  153. OPGun.Font = Enum.Font.SourceSans
  154. OPGun.Text = "OP Gun"
  155. OPGun.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  156. OPGun.TextSize = 14
  157.  
  158. Power.Name = "Power"
  159. Power.Parent = FuncFrame
  160. Power.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  161. Power.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  162. Power.Position = UDim2.new(0.0380227566, 0, 0.775929689, 0)
  163. Power.Size = UDim2.new(0, 75, 0, 25)
  164. Power.Font = Enum.Font.SourceSans
  165. Power.Text = "Power"
  166. Power.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  167. Power.TextSize = 14
  168.  
  169. AnnoyPlayers.Name = "AnnoyPlayers"
  170. AnnoyPlayers.Parent = FuncFrame
  171. AnnoyPlayers.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  172. AnnoyPlayers.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  173. AnnoyPlayers.Position = UDim2.new(0.357414395, 0, 0.775929689, 0)
  174. AnnoyPlayers.Size = UDim2.new(0, 75, 0, 25)
  175. AnnoyPlayers.Font = Enum.Font.SourceSans
  176. AnnoyPlayers.Text = "Annoy Plrs"
  177. AnnoyPlayers.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  178. AnnoyPlayers.TextSize = 14
  179.  
  180. zESP.Name = "zESP"
  181. zESP.Parent = FuncFrame
  182. zESP.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  183. zESP.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  184. zESP.Position = UDim2.new(0.357414395, 0, 0.55577296, 0)
  185. zESP.Size = UDim2.new(0, 75, 0, 25)
  186. zESP.Font = Enum.Font.SourceSans
  187. zESP.Text = "Zombie ESP"
  188. zESP.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  189. zESP.TextSize = 14
  190.  
  191. Walkspeed.Name = "Walkspeed"
  192. Walkspeed.Parent = FuncFrame
  193. Walkspeed.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  194. Walkspeed.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  195. Walkspeed.Position = UDim2.new(0.357414395, 0, 0.33561644, 0)
  196. Walkspeed.Size = UDim2.new(0, 75, 0, 25)
  197. Walkspeed.Font = Enum.Font.SourceSans
  198. Walkspeed.Text = "Walk Speed"
  199. Walkspeed.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  200. Walkspeed.TextSize = 14
  201.  
  202. InfiniteAmmo.Name = "InfiniteAmmo"
  203. InfiniteAmmo.Parent = FuncFrame
  204. InfiniteAmmo.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  205. InfiniteAmmo.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  206. InfiniteAmmo.Position = UDim2.new(0.673003793, 0, 0.775929689, 0)
  207. InfiniteAmmo.Size = UDim2.new(0, 75, 0, 25)
  208. InfiniteAmmo.Font = Enum.Font.SourceSans
  209. InfiniteAmmo.Text = "Inf. Ammo"
  210. InfiniteAmmo.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  211. InfiniteAmmo.TextSize = 14
  212.  
  213. BringZHeads.Name = "BringZHeads"
  214. BringZHeads.Parent = FuncFrame
  215. BringZHeads.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  216. BringZHeads.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  217. BringZHeads.Position = UDim2.new(0.673003793, 0, 0.55577296, 0)
  218. BringZHeads.Size = UDim2.new(0, 75, 0, 25)
  219. BringZHeads.Font = Enum.Font.SourceSans
  220. BringZHeads.Text = "Bring Z. Heads"
  221. BringZHeads.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  222. BringZHeads.TextSize = 14
  223.  
  224. Jumppower.Name = "Jumppower"
  225. Jumppower.Parent = FuncFrame
  226. Jumppower.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  227. Jumppower.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  228. Jumppower.Position = UDim2.new(0.673003793, 0, 0.33561644, 0)
  229. Jumppower.Size = UDim2.new(0, 75, 0, 25)
  230. Jumppower.Font = Enum.Font.SourceSans
  231. Jumppower.Text = "Jump Power"
  232. Jumppower.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  233. Jumppower.TextSize = 14
  234.  
  235. PowerupFrame.Name = "PowerupFrame"
  236. PowerupFrame.Parent = Mainframe
  237. PowerupFrame.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  238. PowerupFrame.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  239. PowerupFrame.Position = UDim2.new(0.0183150209, 0, 0.0273924619, 0)
  240. PowerupFrame.Size = UDim2.new(0, 263, 0, 146)
  241. PowerupFrame.Visible = false
  242.  
  243. Juggernog.Name = "Juggernog"
  244. Juggernog.Parent = PowerupFrame
  245. Juggernog.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  246. Juggernog.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  247. Juggernog.Position = UDim2.new(0.0494296588, 0, 0.130136997, 0)
  248. Juggernog.Size = UDim2.new(0, 112, 0, 28)
  249. Juggernog.Font = Enum.Font.SourceSans
  250. Juggernog.Text = "Juggernog"
  251. Juggernog.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  252. Juggernog.TextSize = 14
  253.  
  254. QuickRevive.Name = "QuickRevive"
  255. QuickRevive.Parent = PowerupFrame
  256. QuickRevive.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  257. QuickRevive.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  258. QuickRevive.Position = UDim2.new(0.520912588, 0, 0.130136997, 0)
  259. QuickRevive.Size = UDim2.new(0, 112, 0, 28)
  260. QuickRevive.Font = Enum.Font.SourceSans
  261. QuickRevive.Text = "Quick Revive"
  262. QuickRevive.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  263. QuickRevive.TextSize = 14
  264.  
  265. SpeedCola.Name = "SpeedCola"
  266. SpeedCola.Parent = PowerupFrame
  267. SpeedCola.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  268. SpeedCola.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  269. SpeedCola.Position = UDim2.new(0.520912588, 0, 0.404109597, 0)
  270. SpeedCola.Size = UDim2.new(0, 112, 0, 28)
  271. SpeedCola.Font = Enum.Font.SourceSans
  272. SpeedCola.Text = "Speed Cola"
  273. SpeedCola.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  274. SpeedCola.TextSize = 14
  275.  
  276. DoubleTap.Name = "DoubleTap"
  277. DoubleTap.Parent = PowerupFrame
  278. DoubleTap.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  279. DoubleTap.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  280. DoubleTap.Position = UDim2.new(0.0494296588, 0, 0.404109597, 0)
  281. DoubleTap.Size = UDim2.new(0, 112, 0, 28)
  282. DoubleTap.Font = Enum.Font.SourceSans
  283. DoubleTap.Text = "Double Tap"
  284. DoubleTap.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  285. DoubleTap.TextSize = 14
  286.  
  287. MuleKick.Name = "MuleKick"
  288. MuleKick.Parent = PowerupFrame
  289. MuleKick.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  290. MuleKick.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  291. MuleKick.Position = UDim2.new(0.285171151, 0, 0.678082168, 0)
  292. MuleKick.Size = UDim2.new(0, 112, 0, 28)
  293. MuleKick.Font = Enum.Font.SourceSans
  294. MuleKick.Text = "Mule Kick"
  295. MuleKick.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  296. MuleKick.TextSize = 14
  297.  
  298. TPframe.Name = "TPframe"
  299. TPframe.Parent = Mainframe
  300. TPframe.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  301. TPframe.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  302. TPframe.Position = UDim2.new(0.0183150209, 0, 0.0273924619, 0)
  303. TPframe.Size = UDim2.new(0, 263, 0, 146)
  304. TPframe.Visible = false
  305.  
  306. Lobby.Name = "Lobby"
  307. Lobby.Parent = TPframe
  308. Lobby.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  309. Lobby.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  310. Lobby.Position = UDim2.new(0.0380227566, 0, 0.089041099, 0)
  311. Lobby.Size = UDim2.new(0, 75, 0, 25)
  312. Lobby.Font = Enum.Font.SourceSans
  313. Lobby.Text = "Lobby"
  314. Lobby.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  315. Lobby.TextSize = 14
  316.  
  317. Spawn.Name = "Spawn"
  318. Spawn.Parent = TPframe
  319. Spawn.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  320. Spawn.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  321. Spawn.Position = UDim2.new(0.0380227566, 0, 0.309197605, 0)
  322. Spawn.Size = UDim2.new(0, 75, 0, 25)
  323. Spawn.Font = Enum.Font.SourceSans
  324. Spawn.Text = "Spawn"
  325. Spawn.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  326. Spawn.TextSize = 14
  327.  
  328. PowerRoom.Name = "PowerRoom"
  329. PowerRoom.Parent = TPframe
  330. PowerRoom.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  331. PowerRoom.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  332. PowerRoom.Position = UDim2.new(0.0380227566, 0, 0.529354334, 0)
  333. PowerRoom.Size = UDim2.new(0, 75, 0, 25)
  334. PowerRoom.Font = Enum.Font.SourceSans
  335. PowerRoom.Text = "Power Room"
  336. PowerRoom.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  337. PowerRoom.TextSize = 14
  338.  
  339. Library.Name = "Library"
  340. Library.Parent = TPframe
  341. Library.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  342. Library.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  343. Library.Position = UDim2.new(0.357414395, 0, 0.529354334, 0)
  344. Library.Size = UDim2.new(0, 75, 0, 25)
  345. Library.Font = Enum.Font.SourceSans
  346. Library.Text = "Library"
  347. Library.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  348. Library.TextSize = 14
  349.  
  350. BuildingTop.Name = "BuildingTop"
  351. BuildingTop.Parent = TPframe
  352. BuildingTop.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  353. BuildingTop.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  354. BuildingTop.Position = UDim2.new(0.357414395, 0, 0.309197605, 0)
  355. BuildingTop.Size = UDim2.new(0, 75, 0, 25)
  356. BuildingTop.Font = Enum.Font.SourceSans
  357. BuildingTop.Text = "Building Top"
  358. BuildingTop.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  359. BuildingTop.TextSize = 14
  360.  
  361. CenterYard.Name = "CenterYard"
  362. CenterYard.Parent = TPframe
  363. CenterYard.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  364. CenterYard.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  365. CenterYard.Position = UDim2.new(0.357414395, 0, 0.089041099, 0)
  366. CenterYard.Size = UDim2.new(0, 75, 0, 25)
  367. CenterYard.Font = Enum.Font.SourceSans
  368. CenterYard.Text = "Center Yard"
  369. CenterYard.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  370. CenterYard.TextSize = 14
  371.  
  372. BarrierBack1.Name = "BarrierBack1"
  373. BarrierBack1.Parent = TPframe
  374. BarrierBack1.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  375. BarrierBack1.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  376. BarrierBack1.Position = UDim2.new(0.673003793, 0, 0.529354334, 0)
  377. BarrierBack1.Size = UDim2.new(0, 75, 0, 25)
  378. BarrierBack1.Font = Enum.Font.SourceSans
  379. BarrierBack1.Text = "Barrier Back 1"
  380. BarrierBack1.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  381. BarrierBack1.TextSize = 14
  382.  
  383. Bathroom.Name = "Bathroom"
  384. Bathroom.Parent = TPframe
  385. Bathroom.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  386. Bathroom.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  387. Bathroom.Position = UDim2.new(0.673003793, 0, 0.309197605, 0)
  388. Bathroom.Size = UDim2.new(0, 75, 0, 25)
  389. Bathroom.Font = Enum.Font.SourceSans
  390. Bathroom.Text = "Bathroom"
  391. Bathroom.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  392. Bathroom.TextSize = 14
  393.  
  394. BackYard.Name = "BackYard"
  395. BackYard.Parent = TPframe
  396. BackYard.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  397. BackYard.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  398. BackYard.Position = UDim2.new(0.673003793, 0, 0.089041099, 0)
  399. BackYard.Size = UDim2.new(0, 75, 0, 25)
  400. BackYard.Font = Enum.Font.SourceSans
  401. BackYard.Text = "Back Yard"
  402. BackYard.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  403. BackYard.TextSize = 14
  404.  
  405. BarrierBack3.Name = "BarrierBack3"
  406. BarrierBack3.Parent = TPframe
  407. BarrierBack3.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  408. BarrierBack3.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  409. BarrierBack3.Position = UDim2.new(0.357414395, 0, 0.748532414, 0)
  410. BarrierBack3.Size = UDim2.new(0, 75, 0, 25)
  411. BarrierBack3.Font = Enum.Font.SourceSans
  412. BarrierBack3.Text = "Barrier Back 3"
  413. BarrierBack3.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  414. BarrierBack3.TextSize = 14
  415.  
  416. BarrierBack4.Name = "BarrierBack4"
  417. BarrierBack4.Parent = TPframe
  418. BarrierBack4.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  419. BarrierBack4.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  420. BarrierBack4.Position = UDim2.new(0.673003793, 0, 0.748532414, 0)
  421. BarrierBack4.Size = UDim2.new(0, 75, 0, 25)
  422. BarrierBack4.Font = Enum.Font.SourceSans
  423. BarrierBack4.Text = "Barrier Back 4"
  424. BarrierBack4.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  425. BarrierBack4.TextSize = 14
  426.  
  427. BarrierBack2.Name = "BarrierBack2"
  428. BarrierBack2.Parent = TPframe
  429. BarrierBack2.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  430. BarrierBack2.BorderColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  431. BarrierBack2.Position = UDim2.new(0.0380227566, 0, 0.748532414, 0)
  432. BarrierBack2.Size = UDim2.new(0, 75, 0, 25)
  433. BarrierBack2.Font = Enum.Font.SourceSans
  434. BarrierBack2.Text = "Barrier Back 2"
  435. BarrierBack2.TextColor3 = Color3.new(0.439216, 0.439216, 0.439216)
  436. BarrierBack2.TextSize = 14
  437.  
  438. Close.Name = "Close"
  439. Close.Parent = Topframe
  440. Close.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  441. Close.BorderSizePixel = 0
  442. Close.Position = UDim2.new(0.931977987, 0, 0, 0)
  443. Close.Size = UDim2.new(0, 18, 0, 23)
  444. Close.Font = Enum.Font.Code
  445. Close.Text = "X"
  446. Close.TextColor3 = Color3.new(0.517647, 0.517647, 0.517647)
  447. Close.TextScaled = true
  448. Close.TextSize = 14
  449. Close.TextWrapped = true
  450.  
  451. TextLabel.Parent = Topframe
  452. TextLabel.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  453. TextLabel.BorderSizePixel = 0
  454. TextLabel.Position = UDim2.new(0.131868139, 0, 0.166666672, 0)
  455. TextLabel.Size = UDim2.new(0, 200, 0, 15)
  456. TextLabel.Font = Enum.Font.SourceSans
  457. TextLabel.Text = "Enter your username"
  458. TextLabel.TextColor3 = Color3.new(0.407843, 0.407843, 0.407843)
  459. TextLabel.TextSize = 20
  460.  
  461. Options.Name = "Options"
  462. Options.Parent = Topframe
  463. Options.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  464. Options.BorderSizePixel = 0
  465. Options.Size = UDim2.new(0, 29, 0, 23)
  466. Options.Font = Enum.Font.Code
  467. Options.Text = "<>"
  468. Options.TextColor3 = Color3.new(0.517647, 0.517647, 0.517647)
  469. Options.TextSize = 18
  470. Options.TextWrapped = true
  471.  
  472. OptionsFrame.Name = "OptionsFrame"
  473. OptionsFrame.Parent = Topframe
  474. OptionsFrame.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  475. OptionsFrame.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  476. OptionsFrame.Position = UDim2.new(-0.391941488, 0, 0, 0)
  477. OptionsFrame.Size = UDim2.new(0, 100, 0, 100)
  478. OptionsFrame.Visible = false
  479.  
  480. TeleportsTab.Name = "TeleportsTab"
  481. TeleportsTab.Parent = OptionsFrame
  482. TeleportsTab.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  483. TeleportsTab.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  484. TeleportsTab.Size = UDim2.new(0, 100, 0, 20)
  485. TeleportsTab.Font = Enum.Font.SourceSans
  486. TeleportsTab.Text = "Teleports"
  487. TeleportsTab.TextColor3 = Color3.new(0.333333, 0.333333, 0.333333)
  488. TeleportsTab.TextSize = 14
  489.  
  490. PowerupTab.Name = "PowerupTab"
  491. PowerupTab.Parent = OptionsFrame
  492. PowerupTab.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  493. PowerupTab.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  494. PowerupTab.Position = UDim2.new(0, 0, 0.200000003, 0)
  495. PowerupTab.Size = UDim2.new(0, 100, 0, 20)
  496. PowerupTab.Font = Enum.Font.SourceSans
  497. PowerupTab.Text = "Power-Ups"
  498. PowerupTab.TextColor3 = Color3.new(0.333333, 0.333333, 0.333333)
  499. PowerupTab.TextSize = 14
  500.  
  501. FunctionTab.Name = "FunctionTab"
  502. FunctionTab.Parent = OptionsFrame
  503. FunctionTab.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  504. FunctionTab.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  505. FunctionTab.Position = UDim2.new(0, 0, 0.400000006, 0)
  506. FunctionTab.Size = UDim2.new(0, 100, 0, 20)
  507. FunctionTab.Font = Enum.Font.SourceSans
  508. FunctionTab.Text = "Functions"
  509. FunctionTab.TextColor3 = Color3.new(0.333333, 0.333333, 0.333333)
  510. FunctionTab.TextSize = 14
  511.  
  512. ConsoleTab.Name = "ConsoleTab"
  513. ConsoleTab.Parent = OptionsFrame
  514. ConsoleTab.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  515. ConsoleTab.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  516. ConsoleTab.Position = UDim2.new(0, 0, 0.600000024, 0)
  517. ConsoleTab.Size = UDim2.new(0, 100, 0, 20)
  518. ConsoleTab.Font = Enum.Font.SourceSans
  519. ConsoleTab.Text = "Console"
  520. ConsoleTab.TextColor3 = Color3.new(0.333333, 0.333333, 0.333333)
  521. ConsoleTab.TextSize = 14
  522.  
  523. KeybindsTab.Name = "KeybindsTab"
  524. KeybindsTab.Parent = OptionsFrame
  525. KeybindsTab.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  526. KeybindsTab.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  527. KeybindsTab.Position = UDim2.new(0, 0, 0.800000012, 0)
  528. KeybindsTab.Size = UDim2.new(0, 100, 0, 20)
  529. KeybindsTab.Font = Enum.Font.SourceSans
  530. KeybindsTab.Text = "Keybinds"
  531. KeybindsTab.TextColor3 = Color3.new(0.333333, 0.333333, 0.333333)
  532. KeybindsTab.TextSize = 14
  533.  
  534. ConsoleFrame.Name = "ConsoleFrame"
  535. ConsoleFrame.Parent = Topframe
  536. ConsoleFrame.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  537. ConsoleFrame.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  538. ConsoleFrame.Position = UDim2.new(0.00509725558, 0, 7.7502327, 0)
  539. ConsoleFrame.Size = UDim2.new(0, 271, 0, 50)
  540. ConsoleFrame.Visible = false
  541.  
  542. ConsoleLabel.Name = "ConsoleLabel"
  543. ConsoleLabel.Parent = ConsoleFrame
  544. ConsoleLabel.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  545. ConsoleLabel.BorderColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  546. ConsoleLabel.Position = UDim2.new(0.0147601478, 0, 0.129314572, 0)
  547. ConsoleLabel.Size = UDim2.new(0, 263, 0, 23)
  548. ConsoleLabel.Font = Enum.Font.SourceSans
  549. ConsoleLabel.Text = "Output"
  550. ConsoleLabel.TextColor3 = Color3.new(0.388235, 0.388235, 0.388235)
  551. ConsoleLabel.TextSize = 14
  552.  
  553. ConsoleInfoLabel.Name = "ConsoleInfoLabel"
  554. ConsoleInfoLabel.Parent = ConsoleFrame
  555. ConsoleInfoLabel.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  556. ConsoleInfoLabel.BorderColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  557. ConsoleInfoLabel.BorderSizePixel = 0
  558. ConsoleInfoLabel.Position = UDim2.new(0.0110701108, 0, 0.629314601, 0)
  559. ConsoleInfoLabel.Size = UDim2.new(0, 263, 0, 18)
  560. ConsoleInfoLabel.Font = Enum.Font.SourceSans
  561. ConsoleInfoLabel.Text = "Info"
  562. ConsoleInfoLabel.TextColor3 = Color3.new(0.258824, 0.258824, 0.258824)
  563. ConsoleInfoLabel.TextSize = 14
  564.  
  565. KeybindFrame.Name = "KeybindFrame"
  566. KeybindFrame.Parent = Topframe
  567. KeybindFrame.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  568. KeybindFrame.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  569. KeybindFrame.Position = UDim2.new(1.02734363, 0, 0.0316572785, 0)
  570. KeybindFrame.Size = UDim2.new(0, 127, 0, 178)
  571. KeybindFrame.Visible = false
  572.  
  573. KeybindLabel.Name = "KeybindLabel"
  574. KeybindLabel.Parent = KeybindFrame
  575. KeybindLabel.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  576. KeybindLabel.BorderColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  577. KeybindLabel.Position = UDim2.new(0.0532832108, 0, 0.0343427323, 0)
  578. KeybindLabel.Size = UDim2.new(0, 20, 0, 22)
  579. KeybindLabel.Font = Enum.Font.SourceSans
  580. KeybindLabel.Text = "P"
  581. KeybindLabel.TextColor3 = Color3.new(0.388235, 0.388235, 0.388235)
  582. KeybindLabel.TextSize = 14
  583.  
  584. KeybindLabel_2.Name = "KeybindLabel"
  585. KeybindLabel_2.Parent = KeybindFrame
  586. KeybindLabel_2.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  587. KeybindLabel_2.BorderColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  588. KeybindLabel_2.Position = UDim2.new(0.0532832108, 0, 0.195016921, 0)
  589. KeybindLabel_2.Size = UDim2.new(0, 20, 0, 22)
  590. KeybindLabel_2.Font = Enum.Font.SourceSans
  591. KeybindLabel_2.Text = "O"
  592. KeybindLabel_2.TextColor3 = Color3.new(0.388235, 0.388235, 0.388235)
  593. KeybindLabel_2.TextSize = 14
  594.  
  595. KeybindLabel_3.Name = "KeybindLabel"
  596. KeybindLabel_3.Parent = KeybindFrame
  597. KeybindLabel_3.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  598. KeybindLabel_3.BorderColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  599. KeybindLabel_3.Position = UDim2.new(0.0532832108, 0, 0.355690777, 0)
  600. KeybindLabel_3.Size = UDim2.new(0, 20, 0, 22)
  601. KeybindLabel_3.Font = Enum.Font.SourceSans
  602. KeybindLabel_3.Text = "I"
  603. KeybindLabel_3.TextColor3 = Color3.new(0.388235, 0.388235, 0.388235)
  604. KeybindLabel_3.TextSize = 14
  605.  
  606. KeybindLabel_4.Name = "KeybindLabel"
  607. KeybindLabel_4.Parent = KeybindFrame
  608. KeybindLabel_4.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  609. KeybindLabel_4.BorderColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  610. KeybindLabel_4.Position = UDim2.new(0.0532832108, 0, 0.677039325, 0)
  611. KeybindLabel_4.Size = UDim2.new(0, 20, 0, 22)
  612. KeybindLabel_4.Font = Enum.Font.SourceSans
  613. KeybindLabel_4.Text = "Y"
  614. KeybindLabel_4.TextColor3 = Color3.new(0.388235, 0.388235, 0.388235)
  615. KeybindLabel_4.TextSize = 14
  616.  
  617. KeybindLabel_5.Name = "KeybindLabel"
  618. KeybindLabel_5.Parent = KeybindFrame
  619. KeybindLabel_5.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  620. KeybindLabel_5.BorderColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  621. KeybindLabel_5.Position = UDim2.new(0.0532832108, 0, 0.516365111, 0)
  622. KeybindLabel_5.Size = UDim2.new(0, 20, 0, 22)
  623. KeybindLabel_5.Font = Enum.Font.SourceSans
  624. KeybindLabel_5.Text = "U"
  625. KeybindLabel_5.TextColor3 = Color3.new(0.388235, 0.388235, 0.388235)
  626. KeybindLabel_5.TextSize = 14
  627.  
  628. KeybindInfo.Name = "KeybindInfo"
  629. KeybindInfo.Parent = KeybindFrame
  630. KeybindInfo.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  631. KeybindInfo.BorderColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  632. KeybindInfo.Position = UDim2.new(0.281629682, 0, 0.0343427323, 0)
  633. KeybindInfo.Size = UDim2.new(0, 85, 0, 22)
  634. KeybindInfo.Font = Enum.Font.SourceSans
  635. KeybindInfo.Text = "Turn On Power"
  636. KeybindInfo.TextColor3 = Color3.new(0.388235, 0.388235, 0.388235)
  637. KeybindInfo.TextSize = 14
  638.  
  639. KeybindInfo_2.Name = "KeybindInfo"
  640. KeybindInfo_2.Parent = KeybindFrame
  641. KeybindInfo_2.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  642. KeybindInfo_2.BorderColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  643. KeybindInfo_2.Position = UDim2.new(0.281629682, 0, 0.191646114, 0)
  644. KeybindInfo_2.Size = UDim2.new(0, 85, 0, 22)
  645. KeybindInfo_2.Font = Enum.Font.SourceSans
  646. KeybindInfo_2.Text = "OP Gun"
  647. KeybindInfo_2.TextColor3 = Color3.new(0.388235, 0.388235, 0.388235)
  648. KeybindInfo_2.TextSize = 14
  649.  
  650. KeybindInfo_3.Name = "KeybindInfo"
  651. KeybindInfo_3.Parent = KeybindFrame
  652. KeybindInfo_3.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  653. KeybindInfo_3.BorderColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  654. KeybindInfo_3.Position = UDim2.new(0.281629682, 0, 0.354567468, 0)
  655. KeybindInfo_3.Size = UDim2.new(0, 85, 0, 22)
  656. KeybindInfo_3.Font = Enum.Font.SourceSans
  657. KeybindInfo_3.Text = "Infinite Ammo"
  658. KeybindInfo_3.TextColor3 = Color3.new(0.388235, 0.388235, 0.388235)
  659. KeybindInfo_3.TextSize = 14
  660.  
  661. KeybindInfo_4.Name = "KeybindInfo"
  662. KeybindInfo_4.Parent = KeybindFrame
  663. KeybindInfo_4.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  664. KeybindInfo_4.BorderColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  665. KeybindInfo_4.Position = UDim2.new(0.281629682, 0, 0.511870861, 0)
  666. KeybindInfo_4.Size = UDim2.new(0, 85, 0, 22)
  667. KeybindInfo_4.Font = Enum.Font.SourceSans
  668. KeybindInfo_4.Text = "Bring Z. Heads"
  669. KeybindInfo_4.TextColor3 = Color3.new(0.388235, 0.388235, 0.388235)
  670. KeybindInfo_4.TextSize = 14
  671.  
  672. KeybindInfo_5.Name = "KeybindInfo"
  673. KeybindInfo_5.Parent = KeybindFrame
  674. KeybindInfo_5.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  675. KeybindInfo_5.BorderColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  676. KeybindInfo_5.Position = UDim2.new(0.281629682, 0, 0.67479223, 0)
  677. KeybindInfo_5.Size = UDim2.new(0, 85, 0, 22)
  678. KeybindInfo_5.Font = Enum.Font.SourceSans
  679. KeybindInfo_5.Text = "Zombie ESP"
  680. KeybindInfo_5.TextColor3 = Color3.new(0.388235, 0.388235, 0.388235)
  681. KeybindInfo_5.TextSize = 14
  682.  
  683. KeybindInfo_6.Name = "KeybindInfo"
  684. KeybindInfo_6.Parent = KeybindFrame
  685. KeybindInfo_6.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  686. KeybindInfo_6.BorderColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  687. KeybindInfo_6.Position = UDim2.new(0.281629682, 0, 0.837713599, 0)
  688. KeybindInfo_6.Size = UDim2.new(0, 85, 0, 22)
  689. KeybindInfo_6.Font = Enum.Font.SourceSans
  690. KeybindInfo_6.Text = "TP to spawn"
  691. KeybindInfo_6.TextColor3 = Color3.new(0.388235, 0.388235, 0.388235)
  692. KeybindInfo_6.TextSize = 14
  693.  
  694. KeybindLabel_6.Name = "KeybindLabel"
  695. KeybindLabel_6.Parent = KeybindFrame
  696. KeybindLabel_6.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  697. KeybindLabel_6.BorderColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  698. KeybindLabel_6.Position = UDim2.new(0.0532832108, 0, 0.839960694, 0)
  699. KeybindLabel_6.Size = UDim2.new(0, 20, 0, 22)
  700. KeybindLabel_6.Font = Enum.Font.SourceSans
  701. KeybindLabel_6.Text = "T"
  702. KeybindLabel_6.TextColor3 = Color3.new(0.388235, 0.388235, 0.388235)
  703. KeybindLabel_6.TextSize = 14
  704.  
  705. Topframe.Active = true
  706. Topframe.Draggable = true
  707. ConsoleFrame.Active = true
  708. ConsoleFrame.Draggable = true
  709. KeybindFrame.Active = true
  710. KeybindFrame.Draggable = true
  711.  
  712. TeleportsTab.MouseButton1Click:Connect(function()
  713.     TPframe.Visible = true
  714.     PowerupFrame.Visible = false
  715.     FuncFrame.Visible = false
  716. end)
  717.  
  718. PowerupTab.MouseButton1Click:Connect(function()
  719.     TPframe.Visible = false
  720.     PowerupFrame.Visible = true
  721.     FuncFrame.Visible = false
  722. end)
  723.  
  724. FunctionTab.MouseButton1Click:Connect(function()
  725.     TPframe.Visible = false
  726.     PowerupFrame.Visible = false
  727.     FuncFrame.Visible = true
  728. end)
  729.  
  730. ConsoleTab.MouseButton1Click:Connect(function()
  731.     if ConsoleFrame.Visible == false then
  732.         ConsoleFrame.Visible = true else
  733.         if ConsoleFrame.Visible == true then
  734.             ConsoleFrame.Visible = false
  735.         end
  736.     end
  737. end)
  738.  
  739. KeybindsTab.MouseButton1Click:Connect(function()
  740.     if KeybindFrame.Visible == false then
  741.         KeybindFrame.Visible = true else
  742.         if KeybindFrame.Visible == true then
  743.             KeybindFrame.Visible = false
  744.         end
  745.     end
  746. end)
  747.  
  748. Options.MouseButton1Click:Connect(function()
  749.     if OptionsFrame.Visible == false then
  750.         OptionsFrame.Visible = true else
  751.         if OptionsFrame.Visible == true then
  752.             OptionsFrame.Visible = false
  753.         end
  754.     end
  755. end)
  756.  
  757. Close.MouseButton1Click:Connect(function()
  758.     PLGUI:Destroy()
  759. end)
  760.  
  761. -- Functions
  762.  
  763. GotoPlayer.MouseButton1Click:Connect(function()
  764.     getplr = function(plxr)
  765.     for i, v in pairs(game.Players:GetPlayers()) do
  766.         if string.find(v.Name, plxr) then
  767.             return v
  768.         elseif v.Name:sub(1, plxr:len()):lower()== plxr:lower() then
  769.             return v
  770.         end
  771.     end
  772. end
  773. local plr = getplr(InputBox.Text)
  774.     game.Players.LocalPlayer.Character:MoveTo(plr.Character.Torso.Position)
  775.     ConsoleLabel.Text = "Teleported to player"
  776.     ConsoleInfoLabel.Text = ""
  777. end)
  778.  
  779. OPGun.MouseButton1Click:Connect(function()
  780.     local m = require(game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Weapon1"))
  781. m.StoredAmmo = math.huge
  782. m.MagSize = math.huge
  783. m.Semi = false
  784. m.Damage = {Max = 1500000, Min = 10000}
  785. m.Spread = {Min = 0, Max = 0}
  786. m.ViewKick = {
  787. Pitch = {Min = 0, Max = 0},
  788. Yaw = {Min = 0, Max = 0}
  789. }
  790. m.BulletPenetration = 1500
  791. m.FireTime = 0
  792. ConsoleLabel.Text = "Equipped the OP gun"
  793. ConsoleInfoLabel.Text = "This only effects your pistol"
  794. end)
  795.  
  796. Power.MouseButton1Click:Connect(function()
  797.     workspace.Interact.PowerSwitch.Activate:FireServer(workspace[LocalNameBox.Text].Interact.OnKeyUp, 14)
  798.     ConsoleLabel.Text = "Turned on power"
  799.     ConsoleInfoLabel.Text = "You can now use power-ups"
  800. end)
  801.  
  802. AnnoyPlayers.MouseButton1Click:Connect(function()
  803.     while true do
  804. wait()
  805. local remote = game["Workspace"]["Name"]["ServerScript"]["WeaponSound"]
  806. local args = {
  807.    [1] = "Fire"
  808. }
  809. remote:FireServer(unpack(args))
  810.     end
  811.     ConsoleLabel.Text = "Enabled annoy players"
  812.     ConsoleInfoLabel.Text = "You can't hear this, but others can"
  813. end)
  814.  
  815. zESP.MouseButton1Click:Connect(function()
  816.     function CreateESPPart(BodyPart,color)
  817. local ESPPartparent = BodyPart
  818. local Box = Instance.new("BoxHandleAdornment")
  819. Box.Size = BodyPart.Size + Vector3.new(0.1, 0.1, 0.1)
  820. Box.Name = "ESPPart"
  821. Box.Adornee = ESPPartparent
  822. Box.Color3 = color
  823. Box.AlwaysOnTop = true
  824. Box.ZIndex = 5
  825. Box.Transparency = 0.8
  826. Box.Parent = BodyPart
  827. end
  828.  
  829. local zombs = workspace.Baddies:getChildren()
  830. for i=1,#zombs do
  831. local bodypart = zombs[i]:getChildren()
  832. for i=1,#bodypart do
  833. if bodypart[i].ClassName == "Part" then
  834. CreateESPPart(bodypart[i], Color3.fromRGB(0,255,0))
  835. end
  836. end
  837. end
  838.  
  839. workspace.Baddies.ChildAdded:Connect(function(zomb)
  840. wait(1)
  841. local bodypart = zomb:getChildren()
  842. for i=1,#bodypart do
  843. if bodypart[i].ClassName == "Part" then
  844. CreateESPPart(bodypart[i], Color3.fromRGB(0,255,0))
  845. end
  846. end
  847. end)
  848. ConsoleLabel.Text = "Enabled zombie ESP"
  849. ConsoleInfoLabel.Text = ""
  850. end)
  851.  
  852. Walkspeed.MouseButton1Click:Connect(function()
  853.     game.Workspace[LocalNameBox.Text].Humanoid.WalkSpeed = (InputBox.Text)
  854.     ConsoleLabel.Text = "Changed walk speed"
  855.     ConsoleInfoLabel.Text = ""
  856. end)
  857.  
  858. InfiniteAmmo.MouseButton1Click:Connect(function()
  859.     for _,v in pairs(debug.getregistry()) do
  860.    if typeof(v) == "table" then
  861.        if v.Ammo then
  862.            v.Ammo = math.huge
  863.        end
  864.    end
  865.        end
  866.     ConsoleLabel.Text = "Set ammo to infinite"
  867.     ConsoleInfoLabel.Text = "This works for every weapon"
  868. end)
  869.  
  870. Jumppower.MouseButton1Click:Connect(function()
  871.     game.Workspace[LocalNameBox.Text].Humanoid.JumpPower = (InputBox.Text)
  872.     ConsoleLabel.Text = "Changed jump power"
  873.     ConsoleInfoLabel.Text = ""
  874. end)
  875.  
  876. BringZHeads.MouseButton1Click:Connect(function()
  877.     local pos = 5,0,5
  878.  
  879. local zomb = workspace.Baddies:GetChildren()
  880. for i=1,#zomb do
  881.     zomb[i].HeadBox.Transparency = 0
  882.     zomb[i].HeadBox.Material = "Neon"
  883.     zomb[i].HeadBox.CanCollide = false
  884.     zomb[i].HeadBox.Anchored = true
  885.     zomb[i].HeadBox.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position+Vector3.new(pos)
  886. end
  887. ConsoleLabel.Text = "Brought all zombie heads"
  888. ConsoleInfoLabel.Text = "They will be glowing a neon color"
  889. end)
  890.  
  891. -- Teleports
  892.  
  893. BarrierBack1.MouseButton1Click:Connect(function()
  894.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(38.7996941, 20.2000065, 64.9929962))
  895.     ConsoleLabel.Text = "Teleported behind barrier 1"
  896. ConsoleInfoLabel.Text = ""
  897. end)
  898.  
  899. BarrierBack2.MouseButton1Click:Connect(function()
  900.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(39.9715347, 20.200016, -32.2160835))
  901.     ConsoleLabel.Text = "Teleported behind barrier 2"
  902. ConsoleInfoLabel.Text = ""
  903. end)
  904.  
  905. BarrierBack3.MouseButton1Click:Connect(function()
  906.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(75.7908325, 3.20002508, -29.1730213))
  907.     ConsoleLabel.Text = "Teleported behind barrier 3"
  908. ConsoleInfoLabel.Text = ""
  909. end)
  910.  
  911. BarrierBack4.MouseButton1Click:Connect(function()
  912.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(74.7251892, 20.9555206, 103.646507))
  913.     ConsoleLabel.Text = "Teleported behind barrier 4"
  914. ConsoleInfoLabel.Text = ""
  915. end)
  916.  
  917. Library.MouseButton1Click:Connect(function()
  918.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-66.9610825, 20.1990089, 2.16642976))
  919.     ConsoleLabel.Text = "Teleported to library"
  920. ConsoleInfoLabel.Text = ""
  921. end)
  922.  
  923. Bathroom.MouseButton1Click:Connect(function()
  924.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(63.4641228, 20.2000504, 78.6364136))
  925.     ConsoleLabel.Text = "Teleported to Bathroom"
  926. ConsoleInfoLabel.Text = ""
  927. end)
  928.  
  929. Lobby.MouseButton1Click:Connect(function()
  930.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-10.6820145, -494.5, -2.53165269))
  931.     ConsoleLabel.Text = "Teleported to Lobby"
  932. ConsoleInfoLabel.Text = ""
  933. end)
  934.  
  935. BackYard.MouseButton1Click:Connect(function()
  936.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(8.4164629, 3.20000005, -115.536255))
  937.     ConsoleLabel.Text = "Teleported to the back yard"
  938. ConsoleInfoLabel.Text = ""
  939. end)
  940.  
  941. Spawn.MouseButton1Click:Connect(function()
  942.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-16.4724731, 3.20000005, -18.6810131))
  943.     ConsoleLabel.Text = "Teleported to spawn"
  944. ConsoleInfoLabel.Text = ""
  945. end)
  946.  
  947. PowerRoom.MouseButton1Click:Connect(function()
  948.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-3.92677093, 20.1999989, 91.4792633))
  949.     ConsoleLabel.Text = "Teleported to the power room"
  950. ConsoleInfoLabel.Text = ""
  951. end)
  952.  
  953. CenterYard.MouseButton1Click:Connect(function()
  954.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-0.663911641, 3.79999971, 41.9799118))
  955.     ConsoleLabel.Text = "Teleported to the center yard"
  956. ConsoleInfoLabel.Text = ""
  957. end)
  958.  
  959. BuildingTop.MouseButton1Click:Connect(function()
  960.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-3.20340729, 47.1415977, 4.63647652))
  961.     ConsoleLabel.Text = "Teleported to the building top"
  962. ConsoleInfoLabel.Text = ""
  963. end)
  964.  
  965. -- Power-up Frame
  966.  
  967. Juggernog.MouseButton1Click:Connect(function()
  968.     local Jugger = game.Workspace.Interact.Juggernog['Activate']   
  969.         local JugArguments = {
  970.                
  971.         }  
  972.         Jugger:FireServer(unpack(JugArguments))
  973.         ConsoleLabel.Text = "Bought Juggernog"
  974. ConsoleInfoLabel.Text = ""
  975. end)
  976.  
  977. QuickRevive.MouseButton1Click:Connect(function()
  978.     local Quickie = game.Workspace.Interact:FindFirstChild 'Quick Revive'['Activate']
  979.         local QuArguments = {
  980.                
  981.         }
  982.         Quickie:FireServer(unpack(QuArguments))
  983.         ConsoleLabel.Text = "Bought Quick Revive"
  984. ConsoleInfoLabel.Text = ""
  985. end)
  986.  
  987. DoubleTap.MouseButton1Click:Connect(function()
  988.     local Dtap = game.Workspace.Interact:FindFirstChild 'Double Tap Root Beer'['Activate']
  989.         local DtArguments = {
  990.                
  991.         }
  992.         Dtap:FireServer(unpack(DtArguments))
  993.         ConsoleLabel.Text = "Bought Double Tap Root Beer"
  994. ConsoleInfoLabel.Text = ""
  995. end)
  996.  
  997. SpeedCola.MouseButton1Click:Connect(function()
  998.     local Speedc = game.Workspace.Interact:FindFirstChild 'Speed Cola'['Activate']
  999.         local SpArguments = {
  1000.                
  1001.         }
  1002.         Speedc:FireServer(unpack(SpArguments))
  1003.         ConsoleLabel.Text = "Bought Speed Cola"
  1004. ConsoleInfoLabel.Text = ""
  1005. end)
  1006.  
  1007. MuleKick.MouseButton1Click:Connect(function()
  1008.     local Mulek = game.Workspace.Interact:FindFirstChild 'Mule Kick'['Activate']
  1009.         local MuArguments = {
  1010.                
  1011.         }
  1012.         Mulek:FireServer(unpack(MuArguments))
  1013.         ConsoleLabel.Text = "Bought Mule Kick"
  1014. ConsoleInfoLabel.Text = ""
  1015. end)
  1016.  
  1017. -- Keybinds
  1018.  
  1019. function onKeyPress(inputObject, gameProcessedEvent)
  1020.     if inputObject.KeyCode == Enum.KeyCode.P then
  1021.         workspace.Interact.PowerSwitch.Activate:FireServer(workspace[LocalNameBox.Text].Interact.OnKeyUp, 14)
  1022.         ConsoleLabel.Text = "Turned on power"
  1023. ConsoleInfoLabel.Text = "You can now use power-ups"
  1024.     end
  1025. end
  1026.  
  1027. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  1028.  
  1029. function onKeyPress(inputObject, gameProcessedEvent)
  1030.     if inputObject.KeyCode == Enum.KeyCode.O then
  1031.         local m = require(game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Weapon1"))
  1032. m.StoredAmmo = math.huge
  1033. m.MagSize = math.huge
  1034. m.Semi = false
  1035. m.Damage = {Max = 1500000, Min = 10000}
  1036. m.Spread = {Min = 0, Max = 0}
  1037. m.ViewKick = {
  1038. Pitch = {Min = 0, Max = 0},
  1039. Yaw = {Min = 0, Max = 0}
  1040. }
  1041. m.BulletPenetration = 1500
  1042. m.FireTime = 0
  1043. ConsoleLabel.Text = "Enabled OP gun"
  1044. ConsoleInfoLabel.Text = ""
  1045.     end
  1046. end
  1047.  
  1048. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  1049.  
  1050. function onKeyPress(inputObject, gameProcessedEvent)
  1051.     if inputObject.KeyCode == Enum.KeyCode.I then
  1052.         for _,v in pairs(debug.getregistry()) do
  1053.    if typeof(v) == "table" then
  1054.        if v.Ammo then
  1055.            v.Ammo = math.huge
  1056.        end
  1057.    end
  1058.            end
  1059.         ConsoleLabel.Text = "Enabled infinite ammo"
  1060. ConsoleInfoLabel.Text = ""
  1061.     end
  1062. end
  1063.  
  1064. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  1065.  
  1066. function onKeyPress(inputObject, gameProcessedEvent)
  1067.     if inputObject.KeyCode == Enum.KeyCode.U then
  1068.         local pos = 5,0,5
  1069.  
  1070. local zomb = workspace.Baddies:GetChildren()
  1071. for i=1,#zomb do
  1072.     zomb[i].HeadBox.Transparency = 0
  1073.     zomb[i].HeadBox.Material = "Neon"
  1074.     zomb[i].HeadBox.CanCollide = false
  1075.     zomb[i].HeadBox.Anchored = true
  1076.     zomb[i].HeadBox.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position+Vector3.new(pos)
  1077. end
  1078. ConsoleLabel.Text = "Teleported all zombie heads"
  1079. ConsoleInfoLabel.Text = "They will be glowing a neon color"
  1080.     end
  1081. end
  1082.  
  1083. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  1084.  
  1085. function onKeyPress(inputObject, gameProcessedEvent)
  1086.     if inputObject.KeyCode == Enum.KeyCode.Y then
  1087.             function CreateESPPart(BodyPart,color)
  1088. local ESPPartparent = BodyPart
  1089. local Box = Instance.new("BoxHandleAdornment")
  1090. Box.Size = BodyPart.Size + Vector3.new(0.1, 0.1, 0.1)
  1091. Box.Name = "ESPPart"
  1092. Box.Adornee = ESPPartparent
  1093. Box.Color3 = color
  1094. Box.AlwaysOnTop = true
  1095. Box.ZIndex = 5
  1096. Box.Transparency = 0.8
  1097. Box.Parent = BodyPart
  1098. end
  1099.  
  1100. local zombs = workspace.Baddies:getChildren()
  1101. for i=1,#zombs do
  1102. local bodypart = zombs[i]:getChildren()
  1103. for i=1,#bodypart do
  1104. if bodypart[i].ClassName == "Part" then
  1105. CreateESPPart(bodypart[i], Color3.fromRGB(0,255,0))
  1106. end
  1107. end
  1108. end
  1109.  
  1110. workspace.Baddies.ChildAdded:Connect(function(zomb)
  1111. wait(1)
  1112. local bodypart = zomb:getChildren()
  1113. for i=1,#bodypart do
  1114. if bodypart[i].ClassName == "Part" then
  1115. CreateESPPart(bodypart[i], Color3.fromRGB(0,255,0))
  1116. end
  1117. end
  1118. end)
  1119. ConsoleLabel.Text = "Enabled zombie ESP"
  1120. ConsoleInfoLabel.Text = ""
  1121.     end
  1122. end
  1123.  
  1124. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  1125.  
  1126. function onKeyPress(inputObject, gameProcessedEvent)
  1127.     if inputObject.KeyCode == Enum.KeyCode.T then
  1128.         game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-16.4724731, 3.20000005, -18.6810131))
  1129.         ConsoleLabel.Text = "Teleported to lobby"
  1130. ConsoleInfoLabel.Text = ""
  1131.     end
  1132. end
  1133.  
  1134. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  1135.  
  1136. -- Other
  1137.  
  1138. ContinueButton.MouseButton1Click:Connect(function()
  1139.     NameFrame.Visible = false
  1140.     FuncFrame.Visible = true
  1141.     ConsoleLabel.Text = "Set User Name"
  1142.     ConsoleInfoLabel.Text = "This is critical for some functions"
  1143.     TextLabel.Text = "Psykek#3180"
  1144. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement