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
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?
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.