Text Tweening Module!

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:

6 Likes

firstly welcome to the Developer Form
second that’s very cool what will you use it for

1 Like

pretty nice work, though you forgot to link the module itself

1 Like

oh how did i forget that lol let me link it really quick

1 Like

I’m making a remake of a old Roblox game from 2015 and i’m gonna use it for the money when it goes up or like dialogs probably.

1 Like