Hello first of all this is my first ever devforum release so i’m not that experienced!
This is a easy to use module for tweening text content such as numbers or strings.
Script Example
local module = require(game:GetService('ReplicatedStorage').TextTweener)
-- usage is: module.TweenText(GUI Object with a text property, Number or Text, Duration of Text Change)
-- For Tweening Numbers
local TextLabel = script.Parent.TextLabel2
module.TweenText(TextLabel, "15000", 6) -- Will tween from current number to 15000 in 6 seconds
-- For a text tween
local TextButton = script.Parent.TextLabel
module.TweenText(TextButton, "example text", 4) -- Will tween text to "example text" over 4 seconds
Here is an example video on how it looks:
Example Video
Heres the link to the module: