The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Project Beatdown | Money Farm script pastebin roblox
By Project Beatdown | Money Farm on 2024-09-22 08:00 am | Syntax: LUA | Views: 10



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/GreenDeno/Venyx-UI-Library/main/source.lua"))()
  2.  
  3. local ulib = library.new("Project Beatdown", 5013109572)
  4.    
  5. --//Page Starting\\--
  6. local page = ulib:addPage("Main", 5012544693)
  7.    
  8. local section1 = page:addSection("Autofarm")
  9.  
  10. --//Tools\\--
  11. local ToolTBL = {};
  12. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  13.     if v:IsA("Tool") then
  14.         table.insert(ToolTBL, v.Name)
  15.     end;
  16. end;
  17.  
  18. game:GetService("RunService").Stepped:Connect(function()
  19.     if shared.EzMone then
  20.     for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  21.         if v:IsA("BasePart") and v.CanCollide == true then
  22.             v.CanCollide = false
  23.             end;
  24.         end;
  25.     end;
  26. end);
  27.  
  28. local plr = game:GetService("Players").LocalPlayer
  29. local tweenService = game:GetService("TweenService")
  30. getgenv().speed = 100
  31. function toTarget(target)
  32.     local speed = getgenv().speed
  33.     local info = TweenInfo.new((target.Position - plr.Character.HumanoidRootPart.Position).Magnitude / speed, Enum.EasingStyle.Linear)
  34.     local _, err = pcall(function()
  35.         tweenService:Create(plr.Character.HumanoidRootPart, info, {CFrame = target}):Play()
  36.     end)
  37.     if err then error("Couldn't create/start tween: ", err) end
  38. end
  39. function newIndexHook()
  40.     local mt = getrawmetatable(game)
  41.     local oldIndex = mt.__newindex
  42.     setreadonly(mt, false)
  43.     mt.__newindex = newcclosure(function(self, i, v)
  44.         if checkcaller() and self == plr.Character.HumanoidRootPart and i == 'CFrame' then
  45.             return toTarget(v)
  46.         end
  47.         return oldIndex(self, i, v)
  48.     end)
  49. setreadonly(mt, true)
  50. end
  51. newIndexHook()
  52.  
  53. section1:addToggle("Auto Money",nil, function(value)
  54.     shared.EzMone = value
  55.  
  56.     while shared.EzMone and wait() do
  57.     pcall(function()
  58.         if not game.Players.LocalPlayer.Character:FindFirstChild("Arrow") then
  59.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Missions.PizzaDelivery.CFrame
  60.             fireclickdetector(game:GetService("Workspace").Missions.PizzaDelivery.ClickDetector)
  61.         elseif game.Players.LocalPlayer.Character:FindFirstChild("Arrow") then
  62.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.Arrow.Attachment0.Parent.CFrame
  63.             end;
  64.         end);
  65.     end;
  66. end);
  67.  
  68. section1:addSlider("Speed", 0, 0, 1000, function(value)
  69.     getgenv().speed = value
  70. end);
  71.  
  72. local section2 = page:addSection("Settings")
  73.  
  74. section2:addToggle("Hide Name",nil, function(value)
  75.     shared.HideN = value
  76.  
  77.     while shared.HideN and wait() do
  78.         for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  79.             if v.Name == 'Pants' or v.ClassName == "Accessory" or v.Name == 'Shirt' or v.Name == 'Head' then
  80.                  v:Destroy()
  81.             end;
  82.         end;
  83.     end;
  84. end);



  • Recent Roblox Scripts