Bebedi

FindAllFloppaMorphs

Aug 26th, 2022 (edited)
17,601
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.09 KB | Source Code | 0 0
  1. function collectall()
  2.     for _, v in pairs(game:GetService("Workspace").Floppas:GetDescendants()) do
  3.         if v.Name == "TouchInterest" then
  4.             firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 0)
  5.             wait()
  6.             firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 1)
  7.         end
  8.     end
  9. end
  10.  
  11. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  12. local Window = Library.CreateLib("Find The Floppa Morphs!", "Ocean")
  13.  
  14. local Farming = Window:NewTab("Main")
  15. local Credits = Window:NewTab("Credits")
  16. local AutoFarm = Farming:NewSection("Main")
  17. local Credit = Credits:NewSection("Credit:")
  18. local Discord = Credits:NewSection("Discord")
  19.  
  20. AutoFarm:NewButton("Collect All Floppas", "Collect all Floppas for you! Working in every world", function()
  21.     collectall()
  22. end)
  23.  
  24. Credit:NewLabel("Made By Bebedi#9960")
  25.  
  26. Discord:NewButton("Copy Discord Link", "Copy the Arcane Discord URL", function()
  27.     setclipboard("https://discord.gg/ArKmNgwXHV")
  28. end)
Advertisement
Add Comment
Please, Sign In to add comment