i want to make a game in which you can point at a location in the map and a tool will be thrown there with and parabola curve but i could not think of a way to do this in roblox
there is easy way to do it.
so one script
ball.Velocity = directionVector * speed -- something like Vector3.new(0.5,0.2,0.5) * 200
will make your ball fly.
However, it you have to make the tool hit that target, it will not be easy. you need to build the formula,