--[[ Auto Farm Cloves (Murders Vs Sheriffs.) Imagine patching a RemoteEvent (collect) But not a simple firetouchint lmao ]] -- by ItsKittyyyGD -- (just additional credit,sorry lol) -- if you read this,trash devs,fix your stupid trash game -- not even a day and i vuln it lol local spawnables = workspace:WaitForChild("Spawnables"):WaitForChild("SpawnablesClient") local players = game:GetService("Players") local startergui = game:GetService("StarterGui") local lp = players.LocalPlayer pcall(function() startergui:SetCore("SendNotification",{ Title = "Auto Farm", Text = "Enjoy Auto Farming!\nBy ItsKittyyyGD", Duration = 6 }) end) local function isclover(name) if not name then return false end return name:lower():find("clover",1,true) ~= nil end local function getclovers() local list = {} for _,v in ipairs(spawnables:GetDescendants()) do if isclover(v.Name) and v:IsA("BasePart") then table.insert(list,v) end end return list end local function touch(part) local char = lp.Character if not char then return end local hrp = char:FindFirstChild("HumanoidRootPart") if not hrp then return end firetouchinterest(hrp,part,0) firetouchinterest(hrp,part,1) end while true do for _,clover in ipairs(getclovers()) do touch(clover) end task.wait(2) end