You can write your topic however you want, but you need to answer these questions:
- What do you want to achieve? Keep it simple and clear!
Bullet ejection system.
- What is the issue? Include screenshots / videos if possible!
Bullets go in the same X direction, making them fall from example: front, not the side.
- What solutions have you tried so far? Did you look for solutions on the Developer Hub?
Tried getting bullet CFrame X, didn’t work.
This is the script I use (local script):
local BulletClone = Tool.Bullet:Clone()
BulletClone.Parent = workspace
BulletClone.Orientation = Tool.Bullet.Orientation
BulletClone.CanCollide = true
BulletClone.Transparency = 0
BulletClone.Anchored = false
local NewBody = Instance.new("BodyVelocity")
NewBody.Parent = BulletClone
NewBody.MaxForce = Vector3.new(1000000, 1000000, 10000000)
NewBody.P = 500
NewBody.Velocity = Vector3.new(20,0,0)
wait(0.1)
NewBody:Destroy()
game:GetService("Debris"):AddItem(BulletClone, 5)
Hope I explained the issue well, if not here is the video of the issue: