Advertisement
doopoo44

Untitled

Feb 23rd, 2021
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.29 KB | None | 0 0
  1. PASTEBIN
  2. API
  3. TOOLS
  4. FAQ
  5. paste
  6. doopoo44
  7. FREE
  8. doopoo44
  9.  
  10.  
  11. Ad by Valueimpression
  12. SHARE
  13. TWEET
  14. doopoo44
  15. Untitled
  16. MY PASTES / HACKS FOR ROBLOX /
  17. FEB 23RD, 2021
  18. 7
  19. NEVER
  20. 6.13 KB
  21.  
  22. --NOT MADE BY SCRIPTFINDER!!!!!!!!!!
  23. -- MADE BY EASY GAMER
  24. -- PLEASE SUBSCRIBE
  25. --NOTE ALL SCRIPTS ARE NOT MINE
  26. --CREDIT TO ALL SCRIPT OWNERS
  27. local ScreenGui = Instance.new("ScreenGui")
  28. local OpenF = Instance.new("Frame")
  29. local OpenB = Instance.new("TextButton")
  30. local MainF = Instance.new("Frame")
  31. local Title = Instance.new("TextLabel")
  32. local AutoFarm = Instance.new("TextButton")
  33. local Noclip = Instance.new("TextButton")
  34. local WalkSpeed = Instance.new("TextButton")
  35. local Close = Instance.new("TextButton")
  36. --Properties:
  37. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  38. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  39. ScreenGui.Parent = game.CoreGui
  40.  
  41. OpenF.Name = "OpenF"
  42. OpenF.Parent = ScreenGui
  43. OpenF.Active = true
  44. OpenF.BackgroundColor3 = Color3.new(0, 0, 0)
  45. OpenF.BackgroundTransparency = 0.40000000596046
  46. OpenF.Position = UDim2.new(0.92768085, 0, 0.626178563, 0)
  47. OpenF.Size = UDim2.new(0, 98, 0, 28)
  48.  
  49. OpenB.Name = "OpenB"
  50. OpenB.Parent = OpenF
  51. OpenB.BackgroundColor3 = Color3.new(1, 1, 1)
  52. OpenB.BackgroundTransparency = 1
  53. OpenB.Position = UDim2.new(0.0102040814, 0, 0.0357142873, 0)
  54. OpenB.Size = UDim2.new(0, 103, 0, 25)
  55. OpenB.Font = Enum.Font.Gotham
  56. OpenB.Text = "Open"
  57. OpenB.TextColor3 = Color3.new(1, 1, 1)
  58. OpenB.TextSize = 14
  59. OpenB.MouseButton1Click:connect(function()
  60. OpenF.Visible = false
  61. MainF.Visible = true
  62. end)
  63.  
  64. MainF.Name = "MainF"
  65. MainF.Parent = ScreenGui
  66. MainF.Active = true
  67. MainF.BackgroundColor3 = Color3.new(0, 0, 0)
  68. MainF.BackgroundTransparency = 0.40000000596046
  69. MainF.Position = UDim2.new(0.369627506, 0, 0.30831641, 0)
  70. MainF.Size = UDim2.new(0, 170, 0, 224)
  71. MainF.Draggable = True
  72.  
  73. Title.Name = "Title"
  74. Title.Parent = MainF
  75. Title.Active = true
  76. Title.BackgroundColor3 = Color3.new(0, 0, 0)
  77. Title.BackgroundTransparency = 0.40000000596046
  78. Title.Size = UDim2.new(0, 170, 0, 30)
  79. Title.Font = Enum.Font.GothamBold
  80. Title.Text = "Attack On Zombies"
  81. Title.TextColor3 = Color3.new(1, 1, 1)
  82. Title.TextSize = 14
  83.  
  84. AutoFarm.Name = "AutoFarm"
  85. AutoFarm.Parent = MainF
  86. AutoFarm.BackgroundColor3 = Color3.new(0, 0, 0)
  87. AutoFarm.BackgroundTransparency = 0.40000000596046
  88. AutoFarm.Position = UDim2.new(0.0588235334, 0, 0.214285731, 0)
  89. AutoFarm.Size = UDim2.new(0, 150, 0, 26)
  90. AutoFarm.Font = Enum.Font.Gotham
  91. AutoFarm.Text = "Auto Farm"
  92. AutoFarm.TextColor3 = Color3.new(1, 1, 1)
  93. AutoFarm.TextSize = 14
  94. AutoFarm.MouseButton1Click:connect(function()
  95. local groundDistance = 8
  96. local Player = game:GetService("Players").LocalPlayer
  97. local function getNearest()
  98. local nearest, dist = nil, 99999
  99. for _,v in pairs(game.Workspace.BossFolder:GetChildren()) do
  100. if(v:FindFirstChild("Head")~=nil)then
  101. local m =(Player.Character.Head.Position-v.Head.Position).magnitude
  102. if(m<dist)then
  103. dist = m
  104. nearest = v
  105. end
  106. end
  107. end
  108. for _,v in pairs(game.Workspace.enemies:GetChildren()) do
  109. if(v:FindFirstChild("Head")~=nil)then
  110. local m =(Player.Character.Head.Position-v.Head.Position).magnitude
  111. if(m<dist)then
  112. dist = m
  113. nearest = v
  114. end
  115. end
  116. end
  117. return nearest
  118. end
  119. _G.farm2 = true
  120. Player.Chatted:Connect(function(m)
  121. if(m==";autofarm false")then
  122. _G.farm2 = false
  123. elseif(m==";autofarm true")then
  124. _G.farm2 = true
  125. end
  126. end)
  127. _G.globalTarget = nil
  128. game:GetService("RunService").RenderStepped:Connect(function()
  129. if(_G.farm2==true)then
  130. local target = getNearest()
  131. if(target~=nil)then
  132. game:GetService("Workspace").CurrentCamera.CFrame = CFrame.new(game:GetService("Workspace").CurrentCamera.CFrame.p, target.Head.Position)
  133. Player.Character.HumanoidRootPart.CFrame = (target.HumanoidRootPart.CFrame * CFrame.new(0, groundDistance, 9))
  134. _G.globalTarget = target
  135. end
  136. end
  137. end)
  138. spawn(function()
  139. while wait() do
  140. game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(0,0,0)
  141. game.Players.LocalPlayer.Character.Torso.Velocity = Vector3.new(0,0,0)
  142. end
  143. end)
  144. while wait() do
  145. if(_G.farm2==true and _G.globalTarget~=nil and _G.globalTarget:FindFirstChild("Head") and Player.Character:FindFirstChildOfClass("Tool"))then
  146. local target = _G.globalTarget
  147. game.ReplicatedStorage.Gun:FireServer({["Normal"] = Vector3.new(0, 0, 0), ["Direction"] = target.Head.Position, ["Name"] = Player.Character:FindFirstChildOfClass("Tool").Name, ["Hit"] = target.Head, ["Origin"] = target.Head.Position, ["Pos"] = target.Head.Position,})
  148. wait()
  149. end
  150. end
  151. end)
  152.  
  153. Noclip.Name = "Noclip"
  154. Noclip.Parent = MainF
  155. Noclip.BackgroundColor3 = Color3.new(0, 0, 0)
  156. Noclip.BackgroundTransparency = 0.40000000596046
  157. Noclip.Position = UDim2.new(0.0588235334, 0, 0.504464269, 0)
  158. Noclip.Size = UDim2.new(0, 150, 0, 26)
  159. Noclip.Font = Enum.Font.Gotham
  160. Noclip.Text = "Noclip [\"n\"]"
  161. Noclip.TextColor3 = Color3.new(1, 1, 1)
  162. Noclip.TextSize = 14
  163. Noclip.MouseButton1Click:connect(function()
  164. local plr = game:service'Players'.LocalPlayer
  165. local char = plr.Character
  166. local hum = char:FindFirstChildOfClass'Humanoid'
  167. local mouse = plr:GetMouse()
  168. on = false
  169.  
  170. mouse.KeyDown:connect(function(key)
  171. if key == "n" then
  172. if not on then
  173. on = true
  174. elseif on then
  175. on = false
  176. end
  177. end
  178. end)
  179.  
  180. while wait() do
  181. if char then
  182. hum = char:FindFirstChildOfClass'Humanoid'
  183. end
  184. if on then
  185. hum:ChangeState(11)
  186. end
  187. end
  188.  
  189. end)
  190.  
  191. WalkSpeed.Name = "WalkSpeed"
  192. WalkSpeed.Parent = MainF
  193. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  194. WalkSpeed.BackgroundTransparency = 0.40000000596046
  195. WalkSpeed.Position = UDim2.new(0.0588235334, 0, 0.8125, 0)
  196. WalkSpeed.Size = UDim2.new(0, 150, 0, 26)
  197. WalkSpeed.Font = Enum.Font.Gotham
  198. WalkSpeed.Text = "Walkspeed"
  199. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  200. WalkSpeed.TextSize = 14
  201. WalkSpeed.MouseButton1Click:connect(function()
  202. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  203. end)
  204.  
  205. Close.Name = "Close"
  206. Close.Parent = MainF
  207. Close.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  208. Close.BackgroundTransparency = 1
  209. Close.Position = UDim2.new(0.841176391, 0, -0.0223214328, 0)
  210. Close.Size = UDim2.new(0, 27, 0, 39)
  211. Close.Font = Enum.Font.SourceSans
  212. Close.Text = "X"
  213. Close.TextColor3 = Color3.new(1, 0, 0.0156863)
  214. Close.TextSize = 48
  215. Close.MouseButton1Click:connect(function()
  216. MainF.Visible = false
  217. OpenF.Visible = true
  218. end)
  219. RAW Paste Data
  220. --NOT MADE BY SCRIPTFINDER!!!!!!!!!!
  221. -- MADE BY EASY GAMER
  222. -- PLEASE SUBSCRIBE
  223. --NOTE ALL SCRIPTS ARE NOT MINE
  224. --CREDIT TO ALL SCRIPT OWNERS
  225. local ScreenGui = Instance.new("ScreenGui")
  226. local OpenF = Instance.new("Frame")
  227. local OpenB = Instance.new("TextButton")
  228. local MainF = Instance.new("Frame")
  229. local Title = Instance.new("TextLabel")
  230. local AutoFarm = Instance.new("TextButton")
  231. local Noclip = Instance.new("TextButton")
  232. local WalkSpeed = Instance.new("TextButton")
  233. local Close = Instance.new("TextButton")
  234. --Properties:
  235. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  236. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  237. ScreenGui.Parent = game.CoreGui
  238.  
  239. OpenF.Name = "OpenF"
  240. OpenF.Parent = ScreenGui
  241. OpenF.Active = true
  242. OpenF.BackgroundColor3 = Color3.new(0, 0, 0)
  243. OpenF.BackgroundTransparency = 0.40000000596046
  244. OpenF.Position = UDim2.new(0.92768085, 0, 0.626178563, 0)
  245. OpenF.Size = UDim2.new(0, 98, 0, 28)
  246.  
  247. OpenB.Name = "OpenB"
  248. OpenB.Parent = OpenF
  249. OpenB.BackgroundColor3 = Color3.new(1, 1, 1)
  250. OpenB.BackgroundTransparency = 1
  251. OpenB.Position = UDim2.new(0.0102040814, 0, 0.0357142873, 0)
  252. OpenB.Size = UDim2.new(0, 103, 0, 25)
  253. OpenB.Font = Enum.Font.Gotham
  254. OpenB.Text = "Open"
  255. OpenB.TextColor3 = Color3.new(1, 1, 1)
  256. OpenB.TextSize = 14
  257. OpenB.MouseButton1Click:connect(function()
  258. OpenF.Visible = false
  259. MainF.Visible = true
  260. end)
  261.  
  262. MainF.Name = "MainF"
  263. MainF.Parent = ScreenGui
  264. MainF.Active = true
  265. MainF.BackgroundColor3 = Color3.new(0, 0, 0)
  266. MainF.BackgroundTransparency = 0.40000000596046
  267. MainF.Position = UDim2.new(0.369627506, 0, 0.30831641, 0)
  268. MainF.Size = UDim2.new(0, 170, 0, 224)
  269. MainF.Draggable = True
  270.  
  271. Title.Name = "Title"
  272. Title.Parent = MainF
  273. Title.Active = true
  274. Title.BackgroundColor3 = Color3.new(0, 0, 0)
  275. Title.BackgroundTransparency = 0.40000000596046
  276. Title.Size = UDim2.new(0, 170, 0, 30)
  277. Title.Font = Enum.Font.GothamBold
  278. Title.Text = "Attack On Zombies"
  279. Title.TextColor3 = Color3.new(1, 1, 1)
  280. Title.TextSize = 14
  281.  
  282. AutoFarm.Name = "AutoFarm"
  283. AutoFarm.Parent = MainF
  284. AutoFarm.BackgroundColor3 = Color3.new(0, 0, 0)
  285. AutoFarm.BackgroundTransparency = 0.40000000596046
  286. AutoFarm.Position = UDim2.new(0.0588235334, 0, 0.214285731, 0)
  287. AutoFarm.Size = UDim2.new(0, 150, 0, 26)
  288. AutoFarm.Font = Enum.Font.Gotham
  289. AutoFarm.Text = "Auto Farm"
  290. AutoFarm.TextColor3 = Color3.new(1, 1, 1)
  291. AutoFarm.TextSize = 14
  292. AutoFarm.MouseButton1Click:connect(function()
  293. local groundDistance = 8
  294. local Player = game:GetService("Players").LocalPlayer
  295. local function getNearest()
  296. local nearest, dist = nil, 99999
  297. for _,v in pairs(game.Workspace.BossFolder:GetChildren()) do
  298. if(v:FindFirstChild("Head")~=nil)then
  299. local m =(Player.Character.Head.Position-v.Head.Position).magnitude
  300. if(m<dist)then
  301. dist = m
  302. nearest = v
  303. end
  304. end
  305. end
  306. for _,v in pairs(game.Workspace.enemies:GetChildren()) do
  307. if(v:FindFirstChild("Head")~=nil)then
  308. local m =(Player.Character.Head.Position-v.Head.Position).magnitude
  309. if(m<dist)then
  310. dist = m
  311. nearest = v
  312. end
  313. end
  314. end
  315. return nearest
  316. end
  317. _G.farm2 = true
  318. Player.Chatted:Connect(function(m)
  319. if(m==";autofarm false")then
  320. _G.farm2 = false
  321. elseif(m==";autofarm true")then
  322. _G.farm2 = true
  323. end
  324. end)
  325. _G.globalTarget = nil
  326. game:GetService("RunService").RenderStepped:Connect(function()
  327. if(_G.farm2==true)then
  328. local target = getNearest()
  329. if(target~=nil)then
  330. game:GetService("Workspace").CurrentCamera.CFrame = CFrame.new(game:GetService("Workspace").CurrentCamera.CFrame.p, target.Head.Position)
  331. Player.Character.HumanoidRootPart.CFrame = (target.HumanoidRootPart.CFrame * CFrame.new(0, groundDistance, 9))
  332. _G.globalTarget = target
  333. end
  334. end
  335. end)
  336. spawn(function()
  337. while wait() do
  338. game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(0,0,0)
  339. game.Players.LocalPlayer.Character.Torso.Velocity = Vector3.new(0,0,0)
  340. end
  341. end)
  342. while wait() do
  343. if(_G.farm2==true and _G.globalTarget~=nil and _G.globalTarget:FindFirstChild("Head") and Player.Character:FindFirstChildOfClass("Tool"))then
  344. local target = _G.globalTarget
  345. game.ReplicatedStorage.Gun:FireServer({["Normal"] = Vector3.new(0, 0, 0), ["Direction"] = target.Head.Position, ["Name"] = Player.Character:FindFirstChildOfClass("Tool").Name, ["Hit"] = target.Head, ["Origin"] = target.Head.Position, ["Pos"] = target.Head.Position,})
  346. wait()
  347. end
  348. end
  349. end)
  350.  
  351. Noclip.Name = "Noclip"
  352. Noclip.Parent = MainF
  353. Noclip.BackgroundColor3 = Color3.new(0, 0, 0)
  354. Noclip.BackgroundTransparency = 0.40000000596046
  355. Noclip.Position = UDim2.new(0.0588235334, 0, 0.504464269, 0)
  356. Noclip.Size = UDim2.new(0, 150, 0, 26)
  357. Noclip.Font = Enum.Font.Gotham
  358. Noclip.Text = "Noclip [\"n\"]"
  359. Noclip.TextColor3 = Color3.new(1, 1, 1)
  360. Noclip.TextSize = 14
  361. Noclip.MouseButton1Click:connect(function()
  362. local plr = game:service'Players'.LocalPlayer
  363. local char = plr.Character
  364. local hum = char:FindFirstChildOfClass'Humanoid'
  365. local mouse = plr:GetMouse()
  366. on = false
  367.  
  368. mouse.KeyDown:connect(function(key)
  369. if key == "n" then
  370. if not on then
  371. on = true
  372. elseif on then
  373. on = false
  374. end
  375. end
  376. end)
  377.  
  378. while wait() do
  379. if char then
  380. hum = char:FindFirstChildOfClass'Humanoid'
  381. end
  382. if on then
  383. hum:ChangeState(11)
  384. end
  385. end
  386.  
  387. end)
  388.  
  389. WalkSpeed.Name = "WalkSpeed"
  390. WalkSpeed.Parent = MainF
  391. WalkSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  392. WalkSpeed.BackgroundTransparency = 0.40000000596046
  393. WalkSpeed.Position = UDim2.new(0.0588235334, 0, 0.8125, 0)
  394. WalkSpeed.Size = UDim2.new(0, 150, 0, 26)
  395. WalkSpeed.Font = Enum.Font.Gotham
  396. WalkSpeed.Text = "Walkspeed"
  397. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  398. WalkSpeed.TextSize = 14
  399. WalkSpeed.MouseButton1Click:connect(function()
  400. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  401. end)
  402.  
  403. Close.Name = "Close"
  404. Close.Parent = MainF
  405. Close.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  406. Close.BackgroundTransparency = 1
  407. Close.Position = UDim2.new(0.841176391, 0, -0.0223214328, 0)
  408. Close.Size = UDim2.new(0, 27, 0, 39)
  409. Close.Font = Enum.Font.SourceSans
  410. Close.Text = "X"
  411. Close.TextColor3 = Color3.new(1, 0, 0.0156863)
  412. Close.TextSize = 48
  413. Close.MouseButton1Click:connect(function()
  414. MainF.Visible = false
  415. OpenF.Visible = true
  416. end)
  417. My Pastes
  418. Untitled
  419. 27 min ago
  420. roblox
  421. C | 46 min ago
  422. Untitled
  423. C | 47 min ago
  424.  
  425. Ad by Valueimpression
  426. Public Pastes
  427. Untitled
  428. Java | 22 min ago
  429. Untitled
  430. JSON | 43 min ago
  431. Untitled
  432. Java | 1 hour ago
  433. Untitled
  434. PHP | 1 hour ago
  435. StringCapitals
  436. C# | 1 hour ago
  437. Laborator 1, exemp...
  438. C++ | 2 hours ago
  439. Daily Inventory Ge...
  440. HTML 5 | 2 hours ago
  441. Expression Evaluat...
  442. C++ | 2 hours ago
  443. create new paste / syntax languages / archive / faq / tools / night mode / api / scraping api / pro
  444. privacy statement / cookies policy / terms of serviceupdated / security disclosure / dmca / report abuse / contact
  445.  
  446. By using Pastebin.com you agree to our cookies policy to enhance your experience.
  447. Site design & logo © 2021 Pastebin
  448. Savor the Summer Flavor
  449. Ad by Sparkling Ice®
  450. See More
  451. x
  452.  
  453.  
  454.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement