Advertisement
Upscalefanatic3

(Roblox) Deadzone Classic Script | Autofarm Kill Zombie

Feb 11th, 2020
5,417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Game Link: https://www.roblox.com/games/3221241066/DEADZONE-CLASSIC?refPageId=d31cb266-0582-4933-aec1-22789d166ae1&nl=true
  2. -- Fast Autofarm/ Free Money. But needs a good pc or laptop to run.
  3.  
  4. mans = game.Players.LocalPlayer.Character
  5. spawnbrick = Instance.new("Part")
  6. spawnbrick.Name = "SpawnBrick"
  7. spawnbrick.Anchored = true
  8. spawnbrick.CanCollide = false
  9. spawnbrick.Position = mans.HumanoidRootPart.Position
  10. spawnbrick.Parent = game.Workspace
  11. wait(1)
  12. while true do
  13. zomie = game.Workspace.zombie
  14. zomie.Head.Anchored = true
  15. zomie.Head.Size = Vector3.new(10,10,10)
  16. zomie:MoveTo(spawnbrick.Position)
  17. wait(0.1)
  18. if zomie.Humanoid.Health <= 0 then
  19. zomie:Destroy()
  20. end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement