Temmie’s Instance Animator – Simplifying Instance Animation!
Overview
This plugin i created is designed to make tween animation creation as easy as possible! Inspired by Roblox’s Animation Editor, this plugin allows you to animate any instance with multiple keyframes, change the timing, and adjust easing styles/directions—all in an intuitive interface.
Features:
- Multi-Point Animation: Add and manage multiple keyframes for control over instance changes.
-
Easing Customization: Adjust
EasingStyle
andEasingDirection
for smooth transitions. - Property Locking: Prevent specific properties from changing—ideal for animations like UI scaling without affecting position!
- Built-in Preview: Play animations directly in the plugin before applying them.
- Edit Existing Tweens: Modify animations you’ve previously created for quick adjustments.
Examples
Here are some examples showcasing the plugin’s capabilities!:
1. Basic Example, moving a part
2. Property Locking for UI Hover Animation
3. Multi-Property Part Animation (this shows off editing existing animation)
Playing Animations In-Game
To be able to run the animations in-game, you need to first insert the “T.I.A” module, pressing the Insert Module button will place it into replicatedstorage:
Every instance you animate on will have a Configuration folder, an example here:
here is an example code of running the “testanimation” above:
local instanceanimator = require(game.ReplicatedStorage:WaitForChild("T.I.A")) --or wherever it is located
local part = script.Parent
instanceanimator:Load(part.TemmieTweens.testanimation):Play()
here is another example of stopping it:
local instanceanimator = require(game.ReplicatedStorage:WaitForChild("T.I.A")) --or wherever it is located
local part = script.Parent
local tween = instanceanimator:Load(part.TemmieTweens.testanimation)
tween:Play()
task.wait(1)
tween:Cancel()
Download & Feedback
I’d love to hear your thoughts! Try it out and let me know any suggestions or issues (PLEASE).
GitHub - T3mm1epurple/TemmiesInstanceAnimator: Simplifying Instance Animation!
If you want help with anything that you do not quite understand, comment here and I will try my best to provide help.
Due to the plugin using multiple instance of “loadstring” to create and edit modulescripts the plugin CANNOT be uploaded to the marketplace.
(please do not steal my source code and publish your own thing…)