DepsYT

Untitled

Mar 8th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. --AutoFarm
  2. _G.LULU = true--change to true or false
  3. while _G.LULU do
  4. wait()--change time if you want
  5. local A_1 = "Click"
  6. game:GetService("ReplicatedStorage").PublicResources.Events.Networking:FireServer(A_1)
  7. end
  8.  
  9.  
  10. --AutoSell
  11. local sell = game.workspace.Resources.Contact.Sell.Sell1
  12. _G.LULU = true--change to true or false
  13. while _G.LULU do
  14. wait()--change time if you want
  15. sell.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  16. end
  17.  
  18. --AutoPickupsAll
  19. for i,v in pairs(game:GetService("Workspace").Resources.Pickups:GetDescendants()) do
  20. if v.ClassName == "MeshPart" then
  21. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  22. wait()
  23. end
  24. end
Add Comment
Please, Sign In to add comment