I present to you my brand new module called Tween Module V3. This module will make tweening much faster and easier with just 2 lines of code you can tween anything. No tween info needed.
This module is very easy to use and has presets like user interface hover and click effects.
How to use :
At first you have to require the module.
local TweenModule = require(game:GetService("ReplicatedStorage").SourceModules.TweenModuleV3)
Then you can create whatever tween you want to.
TweenModule:Custom(
examplePart, --The instance you want to tween
"Position", --Property you want to tween
examplePart.Position + Vector3.new(10, 0, 0), --Value of the property
3, --The lenght of the tween
"Bounce", --Easing style
"Out", --Easing Direction
true --If the tween reverses
)
In case you want to use the presets.
First you have to require it.
local Presets = require(game:GetService("ReplicatedStorage").SourceModules.TweenModuleV3.Presets)
Then just do this very simple line of code to use it.
Presets.UIHover(exampleButton) --Instance you want to use the preset on
Note : The presets are only made for UI effects, but you can create your own. I would love to see your presets so feel free to show them in the replies. Also i published this post on this account, because on my main account “deraklary” i accidentally set my birth date to lower than 13 when creating it so i can’t access devforum on it.
And that was it. I know it’s not that much, but it was my first module.
Anyways here’s the model link : https://create.roblox.com/store/asset/129935642818384/TweenModuleV3