So I made a VFX in blender and tried to use what I made as a projectile, wanting it to fly straight.
But this happened.
https://gyazo.com/c64f43db89c6594509daef5e1477ec24
I’ve been trying to figure out the problem but I can’t if anyone can help I’d be grateful!
Script for the movement
local character = player.Character
local newb = b:Clone()
newb.CFrame = character.HumanoidRootPart.CFrame
local bodyVelocity3 = Instance.new("BodyVelocity")
bodyVelocity3.MaxForce = Vector3.new(500000,5000,500000)
bodyVelocity3.Velocity = (character.HumanoidRootPart.CFrame.LookVector*100)
bodyVelocity3.Parent = newb
newb.Parent = workspace
local offset = Vector3.new(0,5,-10)
newb.CFrame = character.HumanoidRootPart.CFrame*CFrame.new(offset)