I am trying to create a dash ability and can't decide whether to tween on the client-side or server-side. Which way is better, or are there any pros and cons to doing client-side vs server-side? Something like this.
humroot.Anchored = true local moveHRoot = tweenService:Create(humroot, TweenInfo.new(.5), {CFrame = CFrame.new(position, position + dir)}) moveHRoot:Play() moveHRoot.Completed:connect(function() humroot.Anchored = false end)