local L = loadstring(game:HttpGet("https://raw.githubusercontent.com/Turtle-Brand/Turtle-Lib/main/source.lua"))() local W = L:Window("Steal Candy From Babies") ---------------------------------------------------------------------------------------------------------------------------- local player = game:GetService("Players").LocalPlayer W:Toggle("Infinite Money", false, function(bool) inf = bool while inf do game:GetService("MarketplaceService"):SignalPromptProductPurchaseFinished(player.UserId, 1912955903, true) task.wait(0.1) end end) local gui = player:FindFirstChild("PlayerGui") and player.PlayerGui:FindFirstChild("Effects") if gui then gui.Enabled = true end W:Toggle("Delete Effects", false, function(state) if gui then gui.Enabled = not state end end) ---------------------------------------------------------------------------------------------------------------------------- W:Label("https://discord.gg/GzQGE9rr26", Color3.fromRGB(10, 218, 255)) W:Label("Credits to ExploitFin", Color3.fromRGB(127, 143, 166))