Advertisement
RageFurious

cool zombie farm script for deadzone

Jan 17th, 2020
471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. mans = game.Players.LocalPlayer.Character
  2. spawnbrick = Instance.new("Part")
  3. spawnbrick.Name = "SpawnBrick"
  4. spawnbrick.Anchored = true
  5. spawnbrick.CanCollide = false
  6. spawnbrick.Position = mans.HumanoidRootPart.Position
  7. spawnbrick.Parent = game.Workspace
  8. wait(1)
  9. while true do
  10. zomie = game.Workspace.zombie
  11. zomie.Head.Anchored = true
  12. zomie.Head.Size = Vector3.new(10,10,10)
  13. zomie:MoveTo(spawnbrick.Position)
  14. wait(0.1)
  15. if zomie.Humanoid.Health <= 0 then
  16. zomie:Destroy()
  17. end
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement