Advertisement
BjeffeHund

this game is bad

Apr 6th, 2020
8,348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 KB | None | 0 0
  1. --loadstring(game:HttpGet('https://pastebin.com/raw/ZTcM4ZRE', true))()
  2. loadstring(game:HttpGet('https://pastebin.com/raw/cwDSpepQ', true))()
  3. local first = library:AddWindow('Autofarm')
  4. local first_tab = first:AddTab('This game sucks')
  5. local this_game_sucks = false
  6. local meat = false
  7. local coin = false
  8. first_tab:AddSwitch('Autofarm', function(a)
  9. this_game_sucks = a
  10. end)
  11. first_tab:AddSwitch('Auto Collect meat shit', function(a)
  12. meat = a
  13. end)
  14. first_tab:AddSwitch('Auto Collect Coins', function(a)
  15. coin = a
  16. end)
  17. local RemoteEvent = game:GetService("ReplicatedStorage").RemoteEvent
  18. local last = math.huge
  19. local nearest = nil
  20. local id = nil
  21. spawn(function()
  22. while wait() do
  23. for i,v in pairs(game.workspace:GetChildren()) do
  24. if v:FindFirstChild('CharId') and this_game_sucks then
  25. local distance = (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v:FindFirstChildWhichIsA('Part').Position).magnitude
  26. if distance < last then
  27. last = distance
  28. nearest = v:FindFirstChildWhichIsA('Part')
  29. id = v.CharId.Value
  30. end
  31. end
  32. end
  33. end
  34. end)
  35. spawn(function()
  36. while wait() do
  37. for i,v in pairs(game.workspace:GetChildren()) do
  38. if nearest ~= nil and id ~= nil and v:FindFirstChild('CharId') and this_game_sucks and v.CharId.Value == id then
  39. RemoteEvent:FireServer("Animal Selected", v.CharId.Value)
  40. repeat
  41. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = nearest.CFrame
  42. for i = 1,10 do
  43. RemoteEvent:FireServer("Animal Hit", v.CharId.Value)
  44. end
  45. wait()
  46. until not v or not v:FindFirstChild('CharId') or not v:FindFirstChildWhichIsA('Part') or not nearest or not nearest.Parent or not this_game_sucks
  47. last,nearest,id = math.huge, nil, nil
  48. end
  49. end
  50. end
  51. end)
  52. spawn(function()
  53. while wait() do
  54. if meat then
  55. for i,v in pairs(game.workspace:GetChildren()) do
  56. if string.find(v.Name:lower(), "meat") and v.Name ~= "DropOffMeat" and v:FindFirstChild("Main") then
  57. v.Main.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  58. end
  59. end
  60. RemoteEvent:FireServer('Drop Off Meat')
  61. RemoteEvent:FireServer('Collect Grill Coins')
  62. end
  63. if coin then
  64. for i,v in pairs(game:GetService("Workspace").Currency:GetChildren()) do
  65. if v:FindFirstChildWhichIsA('Part') and v:FindFirstChildWhichIsA('Part'):FindFirstChild('TouchInterest') then
  66. v:FindFirstChildWhichIsA('Part').CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  67. end
  68. end
  69. end
  70. end
  71. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement