Hello
I am trying to make a conveyor belt, which can start and stop
I created 1 longer part - Conveyor , anchored it and 1 small part on top of it.
I have created the following script:
workspace.Conveyor.AssemblyLinearVelocity = workspace.Conveyor.CFrame.lookVector * 5
task.wait(10)
workspace.Conveyor.AssemblyLinearVelocity = workspace.Conveyor.CFrame.lookVector * 0
task.wait(10)
workspace.Conveyor.AssemblyLinearVelocity = workspace.Conveyor.CFrame.lookVector * 5
The red part starts moving - ok
after 10 seconds it stops - ok
However after 10 more seconds it does not start to move again, although I see that the Conveyor.AssemblyLinearVelocity is set with the correct value…
What can be the reason for this?
Thanks in advance