SirMeme

ISLAND 2 LEVEL SCRIPT

Apr 26th, 2018
4,272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. print("Made by Hamii#4160, Island 2 level farming script (kills all players too) !")
  2.  
  3. local EventFolder = workspace.Remoter
  4. local ZombieCut = EventFolder:WaitForChild("ZombieCut")
  5. local PlayerCut = EventFolder:WaitForChild("PlayerCut")
  6. local TreeCut = EventFolder:WaitForChild("TreeCut")
  7. local TreesFolder = workspace.Trees
  8. local ZombiesFolder = workspace.NPCs
  9. local Players = game.Players
  10. local Player = Players.LocalPlayer
  11. for _,v in pairs(game.Lighting:GetChildren()) do
  12. if v.Name ~= "Blur" then
  13. v:Destroy()
  14. end
  15. end
  16. while wait(1) do
  17. for _,v in pairs(ZombiesFolder:GetChildren()) do
  18. spawn(function()
  19. if v.Name == "Group" and v:FindFirstChild("NPC") then
  20. local zombie = v.NPC
  21. ZombieCut:FireServer(zombie, "Axe")
  22. end
  23. end)
  24. end
  25. for _,v in pairs(Players:GetPlayers()) do
  26. spawn(function()
  27. if v.Name ~= Player.Name then
  28. local player = v.Character
  29. PlayerCut:FireServer(player, "Axe")
  30. end
  31. end)
  32. end
  33. for _,v in pairs(TreesFolder:GetChildren()) do
  34. spawn(function()
  35. TreeCut:FireServer(v, "Axe")
  36. end)
  37. end
  38. end
Add Comment
Please, Sign In to add comment