--BROUGHT TO YOU BY RobloxScripter.com!--
local function find_right_carts()
local choice
for i,v in next, workspace:GetChildren() do
if v.Name == 'Carts' and v:FindFirstChild('1Cart') ~= nil then
choice = v
break
end
end
return choice
end
local carts = find_right_carts()
for i,v in next, carts:GetChildren() do
spawn(function()
while task.wait(.1) do
fireclickdetector(v:WaitForChild('Down').Click)
end
end)
end
carts.ChildAdded:Connect(function(t)
spawn(function()
while task.wait(.1) do
fireclickdetector(t:WaitForChild('Down').Click)
end
end)
end)