for i,v in pairs(game.CoreGui:GetChildren()) do if v.Name == "$$$" then v:Destroy() end end local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/teppyboy/RbxScripts/master/Misc/UI_Libraries/Zypher/Library.lua"))() local main = library:CreateMain({ projName = "$$$", Resizable = true, MinSize = UDim2.new(0,400,0,400), MaxSize = UDim2.new(0,750,0,500), }) local plrs = game:GetService("Players") local plr = plrs.LocalPlayer local char = plr.Character local hrp = char.HumanoidRootPart local meshes = {} local collectinf = false local collectamount = 55 local maincat = main:CreateCategory("Main") local mainsec = maincat:CreateSection("Main") function equipcar() game:GetService("ReplicatedStorage").Packages._Index["sleitnick_knit@1.0.9"].knit.Services.VehicleService.__comm__.RE.GiveVehicle:FireServer() end mainsec:Create("Slider","Collect Amount",function(value) collectamount = value end, { min = 1, max = 500, default = 55, precise = false } ) mainsec:Create("Button","Collect Brits",function() for i,v in pairs(Workspace:GetChildren()) do if v:IsA("MeshPart") then table.insert(meshes, v.Name) end end for i,v in pairs(meshes) do wait(.1) if i < collectamount then equipcar() hrp.CFrame = game.Workspace[v].CFrame table.remove(meshes, i) print(i) else table.remove(meshes, i) end end end, { animated = true, } ) mainsec:Create("Button","Collect Text (do this first for 120 multipler)",function() for i,v in pairs(game:GetService("Workspace").PantheressText:GetChildren()) do wait(.1) equipcar() hrp.CFrame = v.CFrame end end, { animated = true, } )