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