I have a jet fly by and what it does is spawns the jet in new vectors really fast so it looks like it is flying by. How can i make the jet fly by more smooth?
while true do for i = 1000, -1000, -20 do workspace.j.p.Position = Vector3.new(i, 20, 0) wait(0.001) end end
while true do for i = 1000, -1000, -20 do workspace.j.p.CFrame = CFrame.new(Vector3.new(i, 20, 0)) workspace.j.p.Rotation = Vector3.new(0,1,0)--Edit this to make the rocket work right wait(.0001) end end
CFrame is better than Position, the problem is that with CFrame, the block can go through blocks.