-- // Lead of Library local notifications = loadstring(game:HttpGet(("https://raw.githubusercontent.com/AbstractPoo/Main/main/Notifications.lua"),true))() local Library = loadstring(game:HttpGet(("https://raw.githubusercontent.com/wally-rblx/uwuware-ui/main/main.lua"),true))() local Window = Library:CreateWindow("Brits VIP Party") -- // Descendants Variables local GetLP = game:GetService("Players").LocalPlayer local GetWP = game:GetService("Workspace") local GetRS = game:GetService("ReplicatedStorage") -- // miscfolder // Variables _G.Toggle = false -- // Folder Creation local miscfolder = Window:AddFolder('Coins Farm') miscfolder:AddToggle({text = "Toggle", callback = function(v) _G.Toggle = v end}) miscfolder:AddButton({text = 'Collect Badges', callback = function() for i,v in pairs(workspace.PantheressText:GetDescendants()) do if v:IsA("RemoteEvent") and v.Name == "LetterCollected" then v:FireServer() end end end}) Window:AddDivider() local creditfolder = Window:AddFolder('Credits') do creditfolder:AddLabel({text = 'Jan - UI Library'}) creditfolder:AddLabel({text = 'CJStyles123 - Script'}) end Window:AddButton({text = 'Remove Library', callback = function() if getgenv().Coinfarm then notifications:message{ Title = "Notification | CoinsFarm", Description = "You need to UnToggle the CoinsFarm to remove the Library!", Icon = 6023426926 } else RemoveLibrary() end end}) Library:Init() -- // Check if we're in a vehicle function FindVehicle() for i,v in pairs(GetLP.Character:GetChildren()) do if v:IsA("Accessory") then if v:FindFirstChild("__comm__") then return v.Parent end end end end -- // Functioning function collectCoins() if _G.Toggle then if FindVehicle() == nil then GetLP.Character.HumanoidRootPart.CFrame = CFrame.new(-193, 25, 168) task.wait(1) GetRS.Packages._Index:FindFirstChild("sleitnick_knit@1.0.9").knit.Services.VehicleService.__comm__.RE.GiveVehicle:FireServer() end for i,v in pairs(GetWP:GetChildren()) do if v:IsA("MeshPart") and v.Transparency == 0 and v["__comm__"] and v.Position.Y >= 22 and v.Position.Y <= 26 and _G.Toggle then getgenv().Farming = true GetLP.Character:WaitForChild("HumanoidRootPart").CFrame = v.CFrame task.wait() end end getgenv().Farming = false end end -- // Start Farm collectCoins() -- // Connecting collectCoins on CharacterAdded GetLP.CharacterAdded:Connect(function(char) char:WaitForChild("HumanoidRootPart") collectCoins() end) -- // Right after the farming stops, Continue it again. game.RunService.RenderStepped:Connect(function() if not getgenv().Farming then collectCoins() end end) function RemoveLibrary() if Library.open then Library:Close() end Library.base:ClearAllChildren() Library.base:Destroy() end