local SPEED = 25
local MAX_DISTANCE = 1000
local GRAVITY = Vector3.new(0, -workspace.Gravity, 0)
local function gravity(bullet: Flashcast.Bullet, deltaTime: number)
local parallelComponent = bullet.direction:Dot(GRAVITY.Unit) * GRAVITY.Unit
local perpendicularComponent = bullet.direction - parallelComponent
local newDirection = perpendicularComponent + (parallelComponent + GRAVITY * deltaTime)
bullet.direction = newDirection.Unit * bullet.direction.Magnitude
end
local function maxDistance(bullet: Flashcast.Bullet)
if bullet.distanceTraveled > MAX_DISTANCE then
bullet:stop()
end
end
local flashcast = Flashcast.new()
local behavior = Flashcast.createBehavior()
:setDesiredFramerate(10)
:beforeStep(maxDistance)
:afterStep(gravity)
local direction = Random.new():NextUnitVector()
local bullet = flashcast:spawnBullet(
behavior,
Vector3.new(0, 10, 0),
direction * SPEED
)