Would it be good to use tweenservice to move parts?

im trying to mimic the way beeswarm simulator’s bees move. but im not sure how the bees move.

do the bees use tweenservice? or something else?

no, it’s really not a good idea to make a tween every second, i would use lerping instead of tweenservice

1 Like

What would be even better is using BodyMovers, Use a BodyGyro and BodyPosition, It lerps the movement and requires minimal code.

This isn’t necessarily better. Using BodyMovers require that the parts be unanchored, which means that they’ll constantly be subjected to physics calculations. Changing the CFrame on every frame is far more efficient.

Changing the CFrames is, by the way, what Bee Swarm Simulator does.

yeah that’s what i said

30char

My bad, I meant to reply to @InternallyAmplified instead

1 Like

Oh yeah, i haven’t thought about it like that, all i know is that in my experience it worked but thinking of it like that, lerping would be a better option.

Thanks for sharing the information

I’d use lerp if I need to use it frequently, such as the bee movement. I use tweens for non frequent actions and Gui’s.