Conveyor NEED HELP WITH SPEED

I am making a tycoon game but i have a problem with conveyors

i’ve made them work with assembly but when the parts going through the conveyor get to a slope they zoom past it basically i need the conveyor to grip them

  1. Slope is causing parts to go faster (downhill pretty much)

so how do i fix this i’ve tried other ways of moving the part with like body velocity and things like that

1 Like

Please link footage of the problem you’re having

I’m not sure if this helps but I heard that most tycoon kits use some kind of method to simulate the parts moving rather than actual physics. So you might be able to tween them or something like that.

i thought about this too but how would i tween it without manually inputting every single angle

have points on the conveyor that it tweens between

alternatively if you want a 0 scripting solution you could use collision groups to create a bounding box preventing strange bouncing

just make the part heavy

PART.CustomPhysicalProperties = PhysicalProperties.new(100, 100, 0)

1 Like

thank you this will do but i’ll try the other solutions if i can

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.