Making a Gui Counter

Hello there!
How would I make a text label in a screen gui change numbers forever, on it’s own? I don’t know how to make it change numbers, and I can’t ifnd any tutorials on making a counter that counts up.

1 Like
--This should be a localscript
--Place this in a textlabel
local va = 0
while wait(1) do
va=va+1
script.Parent.Text = va
end
9 Likes