Cart Ride Into Rdite! Script | TROLL

Created by scde

Features:


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)