How to Edit Like the Top 1% | Mini Masterclass

How to Edit Like the Top 1% | Mini Masterclass

11.724 Lượt nghe
How to Edit Like the Top 1% | Mini Masterclass
Sound Effects Download: https://drive.google.com/drive/folders/1PbWRiZudn6Cd46_NPt5vg66iBfsy3XoU?usp=drive_link Text Counting Effect Code: : -- setup from = 0; -- starting value to = 123456; -- ending value delim = "," -- the text inserted as a thousands separator. prefix = "pre " -- text before the number postfix = " post" -- text after the number -- setup end number = from + (to-from)*(time/comp.RenderEnd) delimited = (string.format('%d', number)):reverse():gsub("(%d%d%d)","%1" .. delim):gsub(",(%-?)$","%1"):reverse() return(prefix .. delimited .. postfix)