module.GiveFigureVol = function(Target,Destination, Force, LifeTime)
for count = 0, LifeTime, 0.1 do
wait()
Target.AssemblyLinearVelocity = Destination * Force + Vector3.new(0,5,0)
end
However, when I use this in my server script it seems really delayed when it gets fired from the client scripted. Is there a smoother and quicker way to move the character?