TweenUtils = {} function TweenUtils.TweenFloat(from, to, duration, opupdate) return DSTween.To(from,to,duration,opupdate) end function TweenUtils.OnComplete(tweener,callback) tweener:OnComplete(callback) end function TweenUtils.Kill(tweener) tweener:Stop() end