Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.08 KB | None | 0 0
  1. Official Zombie Rush Gui
  2. -- Created By FunTrator#4964 . Thanks To All The Helpers .
  3. -- Discord : Discord.Io/SomeoneShark
  4.  
  5. local ZR = Instance.new("ScreenGui")
  6. local ZRF = Instance.new("Frame")
  7. local CR = Instance.new("TextLabel")
  8. local CR2 = Instance.new("TextLabel")
  9. local ImageLabel = Instance.new("ImageLabel")
  10. local KA1 = Instance.new("TextButton")
  11. local KA2 = Instance.new("TextButton")
  12. local LEVE = Instance.new("TextButton")
  13. local GPS = Instance.new("TextButton")
  14. local GDA = Instance.new("TextButton")
  15. local UAG = Instance.new("TextButton")
  16. local FB = Instance.new("TextButton")
  17. local CR_2 = Instance.new("TextLabel")
  18. local CR2_2 = Instance.new("TextLabel")
  19. local WS = Instance.new("TextButton")
  20. local JP = Instance.new("TextButton")
  21. local AF2 = Instance.new("TextButton")
  22. local AF1 = Instance.new("TextButton")
  23.  
  24. ZR.Name = "ZR"
  25. ZR.Parent = game.CoreGui
  26.  
  27. ZRF.Name = "ZRF"
  28. ZRF.Parent = ZR
  29. ZRF.BackgroundColor3 = Color3.new(1, 1, 1)
  30. ZRF.Position = UDim2.new(0.284394264, 0, 0.111900531, 0)
  31. ZRF.Size = UDim2.new(0, 317, 0, 373)
  32. ZRF.Style = Enum.FrameStyle.RobloxRound
  33. ZRF.Active = true
  34. ZRF.Draggable = true
  35.  
  36. CR.Name = "CR"
  37. CR.Parent = ZRF
  38. CR.BackgroundColor3 = Color3.new(1, 1, 1)
  39. CR.BackgroundTransparency = 1
  40. CR.Position = UDim2.new(0.0157728717, 0, -0.00729588978, 0)
  41. CR.Size = UDim2.new(0, 291, 0, 28)
  42. CR.Font = Enum.Font.SciFi
  43. CR.Text = "Zombie Rush Gui - By FunTrator"
  44. CR.TextColor3 = Color3.new(0.0117647, 1, 0.12549)
  45. CR.TextSize = 18
  46.  
  47. CR2.Name = "CR2"
  48. CR2.Parent = CR
  49. CR2.BackgroundColor3 = Color3.new(0, 1, 0.14902)
  50. CR2.Position = UDim2.new(-0.000563704409, 0, 0.995450377, 0)
  51. CR2.Size = UDim2.new(0, 296, 0, 1)
  52. CR2.Font = Enum.Font.SourceSans
  53. CR2.Text = ""
  54. CR2.TextColor3 = Color3.new(0, 0, 0)
  55. CR2.TextSize = 14
  56.  
  57. ImageLabel.Parent = CR
  58. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  59. ImageLabel.BackgroundTransparency = 1
  60. ImageLabel.Position = UDim2.new(-0.0446735397, 0, 1, 0)
  61. ImageLabel.Size = UDim2.new(0, 317, 0, 306)
  62. ImageLabel.Image = "rbxassetid://1614557233"
  63. ImageLabel.ScaleType = Enum.ScaleType.Fit
  64.  
  65. KA1.Name = "KA1"
  66. KA1.Parent = ZRF
  67. KA1.BackgroundColor3 = Color3.new(1, 1, 1)
  68. KA1.Position = UDim2.new(0.0189274438, 0, 0.101494282, 0)
  69. KA1.Size = UDim2.new(0, 131, 0, 41)
  70. KA1.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  71. KA1.Font = Enum.Font.SciFi
  72. KA1.Text = "Kill All Zombie [T]"
  73. KA1.TextColor3 = Color3.new(0, 0, 0)
  74. KA1.TextSize = 14
  75. KA1.MouseButton1Down:connect(function()
  76.  
  77. local hotkey = "e" -- hotkey to turn it on or off
  78.  
  79. local working = true
  80. game:GetService('Players').LocalPlayer:GetMouse().KeyDown:connect(function(key)
  81. if key == string.lower(hotkey) then
  82. working = not working
  83. end
  84. end)
  85.  
  86. while wait(0.2) do
  87. if working == true then
  88. pcall(function()
  89. local ohthatscomplicated = {
  90. ["Name"] = game:GetService('Players').LocalPlayer.Character:FindFirstChildOfClass("Tool").Name,
  91. ["HumanoidTables"] = {
  92. }
  93. }
  94. for i,v in pairs(workspace[".ZombieStorage"]:GetChildren()) do
  95. local hm = {
  96. ["HeadHits"] = math.huge,
  97. ["THumanoid"] = v:FindFirstChildOfClass('Humanoid'),
  98. ["BodyHits"] = 0
  99. }
  100. table.insert(ohthatscomplicated["HumanoidTables"],hm)
  101. end
  102. pcall(function()
  103. game:GetService('Players').LocalPlayer.Character:FindFirstChildOfClass("Tool").GunControllerAlt.RemoteFunction:InvokeServer(ohthatscomplicated)
  104. end)
  105. game:GetService('Players').LocalPlayer.Character:FindFirstChildOfClass("Tool").GunController.RemoteFunction:InvokeServer(ohthatscomplicated)
  106. end)
  107. end
  108. end
  109. end)
  110.  
  111. KA2.Name = "KA2"
  112. KA2.Parent = ZRF
  113. KA2.BackgroundColor3 = Color3.new(1, 1, 1)
  114. KA2.Position = UDim2.new(0.520504713, 0, 0.1017638, 0)
  115. KA2.Size = UDim2.new(0, 131, 0, 41)
  116. KA2.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  117. KA2.Font = Enum.Font.SciFi
  118. KA2.Text = "Kill All Zombies"
  119. KA2.TextColor3 = Color3.new(0, 0, 0)
  120. KA2.TextSize = 14
  121. KA2.MouseButton1Down:connect(function()
  122. local working = true
  123. game:GetService('Players').LocalPlayer:GetMouse().KeyDown:connect(function(key)
  124. if key == string.lower(hotkey) then
  125. working = not working
  126. end
  127. end)
  128.  
  129. while wait(0.2) do
  130. if working == true then
  131. pcall(function()
  132. local ohthatscomplicated = {
  133. ["Name"] = game:GetService('Players').LocalPlayer.Character:FindFirstChildOfClass("Tool").Name,
  134. ["HumanoidTables"] = {
  135. }
  136. }
  137. for i,v in pairs(workspace[".ZombieStorage"]:GetChildren()) do
  138. local hm = {
  139. ["HeadHits"] = math.huge,
  140. ["THumanoid"] = v:FindFirstChildOfClass('Humanoid'),
  141. ["BodyHits"] = 0
  142. }
  143. table.insert(ohthatscomplicated["HumanoidTables"],hm)
  144. end
  145. pcall(function()
  146. game:GetService('Players').LocalPlayer.Character:FindFirstChildOfClass("Tool").GunControllerAlt.RemoteFunction:InvokeServer(ohthatscomplicated)
  147. end)
  148. game:GetService('Players').LocalPlayer.Character:FindFirstChildOfClass("Tool").GunController.RemoteFunction:InvokeServer(ohthatscomplicated)
  149. end)
  150. end
  151. end
  152. end)
  153.  
  154. LEVE.Name = "LEVE"
  155. LEVE.Parent = ZRF
  156. LEVE.BackgroundColor3 = Color3.new(1, 1, 1)
  157. LEVE.Position = UDim2.new(0.520504713, 0, 0.24771373, 0)
  158. LEVE.Size = UDim2.new(0, 131, 0, 41)
  159. LEVE.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  160. LEVE.Font = Enum.Font.SciFi
  161. LEVE.Text = "Level [9999]"
  162. LEVE.TextColor3 = Color3.new(0, 0, 0)
  163. LEVE.TextSize = 14
  164. LEVE.MouseButton1Down:connect(function()
  165. game.Players.LocalPlayer.leaderstats.Level.Value = 9999
  166. end)
  167.  
  168. GPS.Name = "GPS"
  169. GPS.Parent = ZRF
  170. GPS.BackgroundColor3 = Color3.new(1, 1, 1)
  171. GPS.Position = UDim2.new(0.018927427, 0, 0.24751094, 0)
  172. GPS.Size = UDim2.new(0, 131, 0, 41)
  173. GPS.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  174. GPS.Font = Enum.Font.SciFi
  175. GPS.Text = "GamePasses"
  176. GPS.TextColor3 = Color3.new(0, 0, 0)
  177. GPS.TextSize = 14
  178. GPS.MouseButton1Down:connect(function()
  179. game.Players.LocalPlayer.Purchased.SpeedyZombie.Value = true
  180. game.Players.LocalPlayer.Purchased.GhostZombie.Value = true
  181. game.Players.LocalPlayer.Purchased.MageZombie.Value = true
  182. game.Players.LocalPlayer.Purchased.ToxicZombie.Value = true
  183. game.Players.LocalPlayer.Purchased.LightweightZombie.Value = true
  184. game.Players.LocalPlayer.Purchased.CombatZombie.Value = true
  185. game.Players.LocalPlayer.Purchased.CombustionZombie.Value = true
  186. game.Players.LocalPlayer.Purchased.BoomBox.Value = true
  187. game.Players.LocalPlayer.Purchased.BoomBoxPlus.Value = true
  188. end)
  189.  
  190. GDA.Name = "GDA"
  191. GDA.Parent = ZRF
  192. GDA.BackgroundColor3 = Color3.new(1, 1, 1)
  193. GDA.Position = UDim2.new(0.520504713, 0, 0.376183778, 0)
  194. GDA.Size = UDim2.new(0, 131, 0, 41)
  195. GDA.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  196. GDA.Font = Enum.Font.SciFi
  197. GDA.Text = "God / Freeze All"
  198. GDA.TextColor3 = Color3.new(0, 0, 0)
  199. GDA.TextSize = 14
  200. GDA.MouseButton1Down:connect(function()
  201. local player=game.Players.LocalPlayer.Character
  202. player.Humanoid:Remove()
  203. Instance.new('Humanoid',player)
  204. end)
  205.  
  206. UAG.Name = "UAG"
  207. UAG.Parent = ZRF
  208. UAG.BackgroundColor3 = Color3.new(1, 1, 1)
  209. UAG.Position = UDim2.new(0.520504713, 0, 0.516796887, 0)
  210. UAG.Size = UDim2.new(0, 131, 0, 41)
  211. UAG.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  212. UAG.Font = Enum.Font.SciFi
  213. UAG.Text = "Unlock All Guns"
  214. UAG.TextColor3 = Color3.new(0, 0, 0)
  215. UAG.TextSize = 14
  216. UAG.MouseButton1Down:connect(function()
  217. game.Players.LocalPlayer.leaderstats.Level.Value = 1000000
  218. end)
  219.  
  220. FB.Name = "FB"
  221. FB.Parent = ZRF
  222. FB.BackgroundColor3 = Color3.new(1, 1, 1)
  223. FB.Position = UDim2.new(0.0189274363, 0, 0.513028383, 0)
  224. FB.Size = UDim2.new(0, 131, 0, 41)
  225. FB.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  226. FB.Font = Enum.Font.SciFi
  227. FB.Text = "Fly Bypass"
  228. FB.TextColor3 = Color3.new(0, 0, 0)
  229. FB.TextSize = 14
  230. FB.MouseButton1Down:connect(function()
  231. repeat wait()
  232. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  233. local mouse = game.Players.LocalPlayer:GetMouse()
  234. repeat wait() until mouse
  235. local plr = game.Players.LocalPlayer
  236. local chr = plr.Character
  237. local torso = plr.Character.Torso
  238. local flying = true
  239. local deb = true
  240. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  241. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  242. local maxspeed = 50
  243. local speed = 0
  244.  
  245. function Fly()
  246. for i,v in pairs(chr:GetChildren()) do
  247. if v:IsA('BasePart') and v.Name ~= "HumanoidRootPart" then
  248. chr:WaitForChild(v.Name).CollisionGroupId = 99
  249. elseif v:IsA('Accessory') then
  250. for g,c in pairs(v:GetChildren()) do
  251. if c:IsA('BasePart') then
  252. c.CollisionGroupId = 99
  253. end
  254. end
  255. end
  256. end
  257. local bg = Instance.new("BodyGyro", torso)
  258. bg.P = 9e4
  259. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  260. bg.cframe = torso.CFrame
  261. local bv = Instance.new("BodyVelocity", torso)
  262. bv.velocity = Vector3.new(0,0.1,0)
  263. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  264. repeat wait()
  265. plr.Character.Humanoid.PlatformStand = true
  266. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  267. speed = speed+.5+(speed/maxspeed)
  268. if speed > maxspeed then
  269. speed = maxspeed
  270. end
  271. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  272. speed = speed-1
  273. if speed < 0 then
  274. speed = 0
  275. end
  276. end
  277. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  278. 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
  279. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  280. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  281. 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
  282. else
  283. bv.velocity = Vector3.new(0,0.1,0)
  284. end
  285. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  286. until not flying
  287. ctrl = {f = 0, b = 0, l = 0, r = 0}
  288. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  289. speed = 0
  290. bg:Destroy()
  291. bv:Destroy()
  292. plr.Character.Humanoid.PlatformStand = false
  293. for i,v in pairs(chr:GetChildren()) do
  294. if v:IsA('BasePart') and v.Name ~= "HumanoidRootPart" then
  295. chr:WaitForChild(v.Name).CollisionGroupId = 0
  296. elseif v:IsA('Accessory') then
  297. for g,c in pairs(v:GetChildren()) do
  298. if c:IsA('BasePart') then
  299. c.CollisionGroupId = 0
  300. end
  301. end
  302. end
  303. end
  304. end
  305. mouse.KeyDown:connect(function(key)
  306. if key:lower() == "e" then
  307. if flying then flying = false
  308. else
  309. flying = true
  310. Fly()
  311. end
  312. elseif key:lower() == "w" then
  313. ctrl.f = 1
  314. elseif key:lower() == "s" then
  315. ctrl.b = -1
  316. elseif key:lower() == "a" then
  317. ctrl.l = -1
  318. elseif key:lower() == "d" then
  319. ctrl.r = 1
  320. end
  321. end)
  322. mouse.KeyUp:connect(function(key)
  323. if key:lower() == "w" then
  324. ctrl.f = 0
  325. elseif key:lower() == "s" then
  326. ctrl.b = 0
  327. elseif key:lower() == "a" then
  328. ctrl.l = 0
  329. elseif key:lower() == "d" then
  330. ctrl.r = 0
  331. end
  332. end)
  333. Fly()
  334. end)
  335.  
  336. CR_2.Name = "CR"
  337. CR_2.Parent = ZRF
  338. CR_2.BackgroundColor3 = Color3.new(1, 1, 1)
  339. CR_2.BackgroundTransparency = 1
  340. CR_2.Position = UDim2.new(0.0157728717, 0, 0.928450584, 0)
  341. CR_2.Size = UDim2.new(0, 291, 0, 28)
  342. CR_2.Font = Enum.Font.SciFi
  343. CR_2.Text = "DISCORD . IO / SomeoneShark"
  344. CR_2.TextColor3 = Color3.new(0.0117647, 1, 0.12549)
  345. CR_2.TextSize = 18
  346.  
  347. CR2_2.Name = "CR2"
  348. CR2_2.Parent = CR_2
  349. CR2_2.BackgroundColor3 = Color3.new(0, 1, 0.14902)
  350. CR2_2.Position = UDim2.new(-0.000563704409, 0, 0.995450377, 0)
  351. CR2_2.Size = UDim2.new(0, 296, 0, 1)
  352. CR2_2.Font = Enum.Font.SourceSans
  353. CR2_2.Text = ""
  354. CR2_2.TextColor3 = Color3.new(0, 0, 0)
  355. CR2_2.TextSize = 14
  356.  
  357. WS.Name = "WS"
  358. WS.Parent = ZRF
  359. WS.BackgroundColor3 = Color3.new(1, 1, 1)
  360. WS.Position = UDim2.new(0.0189274363, 0, 0.657298088, 0)
  361. WS.Size = UDim2.new(0, 131, 0, 41)
  362. WS.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  363. WS.Font = Enum.Font.SciFi
  364. WS.Text = "Walkspeed"
  365. WS.TextColor3 = Color3.new(0, 0, 0)
  366. WS.TextSize = 14
  367. WS.MouseButton1Down:connect(function()
  368. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 200
  369. end)
  370.  
  371. JP.Name = "JP"
  372. JP.Parent = ZRF
  373. JP.BackgroundColor3 = Color3.new(1, 1, 1)
  374. JP.Position = UDim2.new(0.520504713, 0, 0.662256956, 0)
  375. JP.Size = UDim2.new(0, 131, 0, 41)
  376. JP.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  377. JP.Font = Enum.Font.SciFi
  378. JP.Text = "JumpPower"
  379. JP.TextColor3 = Color3.new(0, 0, 0)
  380. JP.TextSize = 14
  381. JP.MouseButton1Down:connect(function()
  382. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 300
  383. end)
  384.  
  385. AF2.Name = "AF2"
  386. AF2.Parent = ZRF
  387. AF2.BackgroundColor3 = Color3.new(1, 1, 1)
  388. AF2.Position = UDim2.new(0.520504713, 0, 0.807029068, 0)
  389. AF2.Size = UDim2.new(0, 131, 0, 41)
  390. AF2.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  391. AF2.Font = Enum.Font.SciFi
  392. AF2.Text = "Auto Farm 2 [EquipWep]"
  393. AF2.TextColor3 = Color3.new(0, 0, 0)
  394. AF2.TextSize = 11
  395. AF2.MouseButton1Down:connect(function()
  396. local plr = game:GetService("Players").LocalPlayer local killEmAll = plr.Character[plr.EquipStorage.Primary.Value].GunController.RemoteFunction
  397. for _,v in next, workspace[".ZombieStorage"]:GetChildren() do
  398. local Table = {["Name"] = plr.EquipStorage.Primary.Value, ["HumanoidTables"] = {[1] = {["HeadHits"] = 500000000,["THumanoid"] = v.Humanoid, ["BodyHits"] = 500000000}}}
  399. killEmAll:InvokeServer(Table)
  400. end
  401. end)
  402.  
  403. AF1.Name = "AF1"
  404. AF1.Parent = ZRF
  405. AF1.BackgroundColor3 = Color3.new(1, 1, 1)
  406. AF1.Position = UDim2.new(0.0220820121, 0, 0.807029068, 0)
  407. AF1.Size = UDim2.new(0, 131, 0, 41)
  408. AF1.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  409. AF1.Font = Enum.Font.SciFi
  410. AF1.Text = "Auto Farm [Equip Wep]"
  411. AF1.TextColor3 = Color3.new(0, 0, 0)
  412. AF1.TextSize = 12
  413. AF1.MouseButton1Down:connect(function()
  414. local plr = game:GetService("Players").LocalPlayer local killEmAll = plr.Character[plr.EquipStorage.Primary.Value].GunController.RemoteFunction
  415. for _,v in next, workspace[".ZombieStorage"]:GetChildren() do
  416. local Table = {["Name"] = plr.EquipStorage.Primary.Value, ["HumanoidTables"] = {[1] = {["HeadHits"] = 500000000,["THumanoid"] = v.Humanoid, ["BodyHits"] = 500000000}}}
  417. killEmAll:InvokeServer(Table)
  418. end
  419. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement