[ad_1]
Created by scde
Features:
l
local carts = find_right_carts()
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
for i,v in next, carts:GetChildren() do
spawn(function()
while task.wait() do
fireclickdetector(v:WaitForChild('Down').Click)
end
end)
end
carts.ChildAdded:Connect(function(t)
spawn(function()
game:GetService('RunService').RenderStepped:Connect(function()
fireclickdetector(t:WaitForChild('Down').Click)
task.wait()
end)
end)
end)
ENJOY!
Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!
[ad_2]