Automatic Cable Car System

Hi, do you have any tips on how to make an automatic cable car system, with doors that open by themselves on a specific area? I have no idea how to do it. Help would be really appreciated :wink:

well, for example, you can put dots on the route of the cableway cabins and rename them as opendoor and closedoor

after the booth, check the touched

the code for the booth

script.parent.touched:connect(function(hit)
if hit.Name == “the opening block” then
“Opening code”
elseif hit.Name == “the closing block”:
“Closing code”
end)

1 Like

Thanks, but would you know how to make the models of the cabins move by themselves by cable route?