How to create a desired trajectory using FastCast?

I am using the FastCast library to launch a humanoid model along a trajectory similar to the one shown in the picture below.
However, I am encountering an issue where the character lands at about 1/7th of the intended target point.
Despite carefully reviewing the API of the library, I am unable to resolve this issue due to my limited understanding of physics.
I would greatly appreciate any help you can provide!

72 lines of code

-- // Constants
local DEBUG = true
local BULLET_SPEED = 100
local BULLET_MAXDIST = 1000
local MIN_BULLET_SPREAD_ANGLE = 0
local MAX_BULLET_SPREAD_ANGLE = 0
local BULLETS_PER_SHOT = 1
local BULLET_GRAVITY = Vector3.new(0, -workspace.Gravity, 0)

-- // Roblox Services
local ReplicatedStorage = game:GetService("ReplicatedStorage")

-- // External Module Imports
local FastCast = require(ReplicatedStorage.Modules.FastCastRedux)

-- // Variables
local random = Random.new()

local caster = FastCast.new()
FastCast.VisualizeCasts = DEBUG

local castBehavior = FastCast.newBehavior()
castBehavior.MaxDistance = BULLET_MAXDIST
castBehavior.HighFidelityBehavior = FastCast.HighFidelityBehavior.Default

castBehavior.CosmeticBulletTemplate = script.Rig

castBehavior.CosmeticBulletContainer = workspace.Debris
castBehavior.Acceleration = BULLET_GRAVITY

-- // Functions
local function fire(startPos: Vector3, endPos: Vector3)
	local direction = endPos - startPos
	
	local directionalCFrame = CFrame.new(Vector3.zero, direction)
	local formatted = (directionalCFrame * CFrame.fromOrientation(0, 0, random:NextNumber(0, math.pi * 2))
		* CFrame.fromOrientation(math.rad(random:NextNumber(MIN_BULLET_SPREAD_ANGLE, MAX_BULLET_SPREAD_ANGLE)), 0, 0)).LookVector

	local modifiedBulletSpeed = formatted * BULLET_SPEED

	caster:Fire(startPos, formatted, modifiedBulletSpeed, castBehavior)
end

local function onRayUpdated(cast, segmentOrigin, segmentDirection, length, segmentVelocity, cosmeticBulletObject: Model)
	if not cosmeticBulletObject then
		return
	end
	
	local bulletLength = cosmeticBulletObject:GetExtentsSize().Z / 2
	local baseCFrame = CFrame.new(segmentOrigin, segmentOrigin + segmentDirection)
	cosmeticBulletObject.PrimaryPart.CFrame = baseCFrame * CFrame.new(0, 0, -(length - bulletLength))
end

local function onRayTerminated(cast)
	local cosmeticBullet = cast.RayInfo.CosmeticBulletObject
	
	if cosmeticBullet then
		task.wait(5)
		
		cosmeticBullet:Destroy()
	end
end

-- // Connections
caster.LengthChanged:Connect(onRayUpdated)
caster.CastTerminating:Connect(onRayTerminated)

while true do
	task.wait(1)
	fire(workspace.Start.Position, workspace.End.Position)
end```