Best shake effect

does anyone know the best TweenInfo for a “shake effect”? ive been using all sorts of Easing Styles but it does not really shake, it just goes towards a direction before comming back.

			local tweeninfo = TweenInfo.new(0.2,Enum.EasingStyle.Back,Enum.EasingDirection.InOut,0,true)
			local tween = tweenservice:Create(mesh,tweeninfo,{Position = mesh.Position + Vector3.new(0.1,0,0)})
			tween:Play()
1 Like

Enum.EasingStyle.Elastic or Enum.EasingStyle.Bounce

1 Like

use a for loop too I think, switching out from In to Out to In

1 Like