From venuslock, 2 Months ago, written in Plain Text.
Embed
  1. --eg script, infinite money, unlimited coins.
  2.  
  3. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  4. local Window = Library.CreateLib("Eg 1.0", "GrapeTheme")
  5. local Tab = Window:NewTab("Collect")
  6. local Section = Tab:NewSection("Coins")
  7.  
  8. local collectables
  9. for i,v in next,game.Workspace:GetChildren() do
  10.     if v:IsA("Model") and v.Name == "collectables" then
  11.         collectables = v
  12.         break
  13.     end
  14. end
  15.  
  16.  
  17. Section:NewToggle("Auto Collect", "Automatically collects all coins and eggs", function(state)
  18.     if state then
  19.         _G.collectMoney = true
  20.         while _G.collectMoney do
  21.             local torso = game.Players.LocalPlayer.Character.HumanoidRootPart -- reassign incase player dies
  22.             for i,v in pairs(collectables:GetDescendants()) do
  23.                 if v.Name == "TouchInterest" and v.Parent then
  24.                     firetouchinterest(torso, v.Parent, 0)
  25.                     firetouchinterest(torso, v.Parent, 1)
  26.                    
  27.                 end
  28.             end
  29.             wait(1)
  30.         end
  31.     else
  32.         _G.collectMoney = false
  33.     end
  34. end)
  35.