How can i make an incrementing coin counter?

I wanna make my coin counter show every number you get, not just instantly update to the number you have. Kinda like mario odyssey’s coin counter. I don’t know how to do it, and I want it to show all the numbers.

You can use a loop like this:

for i = currentCoins, currentCoins + numberOfCoinsToAdd do
	coinCounter.Text = tostring(currentCoins)
	task.wait()
end

I think this is what you are looking for Typewriter Module

Here is a number spinner module. It might be what you are looking for.