TheNadie

[NEW] Roblox Banning Simulator 2 Hack | AutoFarm / Money / L

Mar 23rd, 2020
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. --Variables
  2. _G.Toggle = true --Change: "True" to start farm / "False" to stop farm
  3. local Player = game:GetService("Players").LocalPlayer
  4.  
  5. --Bonk
  6. while true do
  7. for i,v in pairs(game:GetService("Workspace").Zones.npcSpawn:GetChildren())do
  8. if _G.Toggle and v:FindFirstChild("HumanoidRootPart") and v:FindFirstChildOfClass("Humanoid") then
  9. repeat
  10. pcall(function()
  11. local tool = Player.Character:FindFirstChildOfClass("Tool") or Player.Backpack:FindFirstChildOfClass("Tool")
  12. if tool:FindFirstChild("Damage") then
  13. Player.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame*CFrame.new(0,0,3)
  14. Player.Character[tool.Name].Damage:FireServer(v,tool.Name)
  15. if tool.Parent == Player.Character then
  16. tool.Parent = Player.Backpack
  17. end
  18. if tool.Parent == Player.Backpack then
  19. tool.Parent = Player.Character
  20. end
  21. end
  22. end)
  23. wait()
  24. until not _G.Toggle or not v or not v.Parent or not v:FindFirstChild("HumanoidRootPart") or not v:FindFirstChildOfClass("Humanoid")
  25. end
  26. end
  27. wait()
  28. end
Add Comment
Please, Sign In to add comment