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.
For my StockWatcher plugin, @Soliform suggested I add a number spinner. I liked the idea, so I created a module that would handle it neatly.
Features:
Uses proxies to automatically handle all your changes and values without you needing to ever call functions yourself
Supports all fonts, textsizes, and colors
Customizable spin speed
Customizable decimal places
Customizable prefix and suffix (default is “$”)
Support for comma placement
API:
function NumberSpinner.new()
Creates a…