I know how to do a loading bar, but I'm not sure how you would make the loop change the text to a higher number that will be the percentage. All help is appreciated!
local t = script.Parent for i = 1,100 do wait(.1) t.Text = tostring(i).."%" end