BLI, thanks, it worked perfectly on my plots (as a .gif). Here’s my code, hope it helps.
Coord was an array with all the points to plot.
gr(show = :ijulia)
plot()
framestyle=[:zerolines]
markershapes= [:circle];
anim = @animate for i in 1:N*10
x=Coord[i,1]
y=Coord[i,2]
w=Coord[i,3]
plot!((0,0,w),lw=2,la=0.4,seriestype=:scatter, color=:grey, ls=:solid, camera=(-20,20))
plot!((x,0,0),lw=2,la=0.4,seriestype=:scatter, color=:grey, ls=:solid, camera=(-20,20))
plot!((0,y,0),lw=2,la=0.4,seriestype=:scatter, color=:grey, ls=:solid, camera=(-20,20))
plot!((x,y,w),linewidth=3,seriestype=:scatter,legend = false, xlim=(0,1),ylim=(0,1),zlim=(0,1),
gridstyle=:solid, gridlinewidth=2, foreground_color_grid=:grey,
size = (500,500),bg=:white,
zlabel=("k_{3}"), xlabel=("k_{1}"), ylabel=("k_{2}"), camera = (-20, 20))
end every 1;
gif(anim,"anim1.gif")