Advertisement
probanana

Raise a Peter AutoFarm Script

Dec 11th, 2022
643
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. -- settings
  2. _G.ToggledPeterAttach = false
  3. _G.Toggled = true
  4. _G.AutoCollect = true
  5. -- code stuff
  6. while wait() do
  7. if _G.Toggled == true then
  8. fireclickdetector(game:GetService("Workspace").Interactables.Peter.Peter.Clickable.DropMoney, math.huge)
  9. end
  10. if _G.ToggledPeterAttach == true then
  11. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Interactables.Peter.Peter.Clickable.CFrame
  12. end
  13. if _G.AutoCollect == true then
  14. for _,v in pairs(game:GetService("Workspace").Interactables.MoneyBills:GetDescendants()) do
  15. if v:IsA("TouchTransmitter") then
  16. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 1)
  17. wait()
  18. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 0)
  19. end
  20. end
  21. end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement