toclipboard([[ https://discord.gg/bKPRWatprk ]]) local localPlayer = game:GetService("Players").LocalPlayer local replicatedStorage = game:GetService("ReplicatedStorage") local cd = 0 local autotool = false local tokens = false local autobubble = false local autoconvert = false local autosprout = false local autogummy = false local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/dementiaenjoyer/UI-LIBRARIES/refs/heads/main/wally-modified/source.lua')))() local window = library:CreateWindow('Credit: Neutral') window:Section('Stuff') window:Toggle("Auto tool",{},function(value) autotool = value end) window:Toggle("Collect Tokens",{},function(value) tokens = value end) window:Toggle("Auto Convert",{},function(value) autoconvert = value end) window:Toggle("Auto Bubble",{},function(value) autobubble = value end) window:Toggle("Auto Gumdrop",{},function(value) autogummy = value end) window:Toggle("Auto Sprout",{},function(value) autosprout = value end) game:GetService("RunService").RenderStepped:Connect(function(delta) cd += delta local character = localPlayer.Character local tool = character:FindFirstChildWhichIsA("Tool") if autoconvert then firetouchinterest(workspace.Convert, character.HumanoidRootPart, 0) firetouchinterest(workspace.Convert, character.HumanoidRootPart, 1) end if tokens then for _, v in ipairs(workspace.Debris.Tokens:GetChildren()) do if v.Name == localPlayer.Name or v.Name == "All" then firetouchinterest(v, character.HumanoidRootPart, 0) end end end if autobubble then for _, v in ipairs(workspace.Debris.Misc:GetChildren()) do if string.find(string.lower(v.Name), "bubble") then firetouchinterest(v, character.HumanoidRootPart, 0) end end end if cd > 0.1 then cd = 0 if autotool and tool and tool:FindFirstChild("ToolRemote") then tool.ToolRemote:FireServer(true) end if autogummy then game:GetService("ReplicatedStorage").Remotes.UseItem:FireServer("Gumdrops") end if autosprout then game:GetService("ReplicatedStorage").Remotes.UseItem:FireServer("Magic Bean") end end end)