SirMeme

HEHE XD LOL AD REV

Nov 3rd, 2018
7,754
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. --[[
  2. AutoFarm script for Weapon Simulator
  3. Original Idea: Hoofer
  4. Edited by: Danisty
  5. Equip your weapon and press execute to start farming, unequip your weapon to stop
  6. ------------------------------------
  7. This script doesnt work with guns!
  8. Remember to try the original script too
  9. https://v3rmillion.net/showthread.php?tid=689334
  10. --]]
  11.  
  12. local Area = "1" --Put here the area where do you want to farm [1-9] (The area has to be unlocked)
  13.  
  14. if Area == "1" then
  15. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4.70544526, 3.87829924, 37.5635262)
  16. elseif Area == "2" then
  17. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4.70544526, 3.87829924, -160.5635262)
  18. elseif Area == "3" then
  19. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4.70544526, 3.87829924, -350.5635262)
  20. elseif Area == "4" then
  21. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4.70544526, 3.87829924, -540.5635262)
  22. elseif Area == "5" then
  23. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4.70544526, 3.87829924, -750.5635262)
  24. elseif Area == "6" then
  25. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4.70544526, 3.87829924, -950.5635262)
  26. elseif Area == "7" then
  27. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4.70544526, 3.87829924, -1150.5635262)
  28. elseif Area == "8" then
  29. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4.70544526, 3.87829924, -1350.5635262)
  30. elseif Area == "9" then
  31. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(4.70544526, 3.87829924, -1550.5635262)
  32. end
  33.  
  34. local function GC()
  35. game.ReplicatedStorage.Events.Money:FireServer("Loot", 40) wait()
  36. game.ReplicatedStorage.Events.Money:FireServer("Loot", 10)
  37. game.ReplicatedStorage.Events.Money:FireServer("Loot", 1)
  38. end
  39.  
  40. local function AF()
  41. while wait() do
  42. for i,v in pairs(game.Workspace.Areas[Area].Mobs:GetChildren()) do
  43. if v.Name == Area or v.Name == Area.."b" then
  44. while v:FindFirstChild("Damage") do
  45. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame + v.HumanoidRootPart.CFrame.lookVector * -2
  46. game.Players.LocalPlayer.Character.Weapons.Remote:FireServer()
  47. GC()
  48. end
  49. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-17.6603642, 2.44802189, 138.817398) wait()
  50. if game.Workspace.Camera:FindFirstChild("Heart")then
  51. game.Workspace.Camera:FindFirstChild("Heart"):Destroy()
  52. end
  53. end end end end
  54. wait(1)
  55. AF()
Add Comment
Please, Sign In to add comment