Screen Text Transition Animation -- [Open Source]

Screen Text Transition Animation

Simple and pleasing screen text animation for SOME use cases.

Hi! How are you today? I hope you’re feeling great! :grin:
I bring you today this small and simple resource that may prove useful for showing things like the results of a match, a global warning, etc.
This was not made to be used in a lot of situations, very few actually.

Preview

Anyway, you probably want to see what this is, so here’s a short preview of it in use:

Features

  • Portable
  • Easy to use
  • Easy to customize
  • Free :+1:

Example

  • Get the module in the Roblox Marketplace
  • Insert it in ReplicatedStorage (for this example, you can put wherever you want)
  • Create a LocalScript under StarterPlayerScripts
  • Paste this code inside the LocalScript:
Example Code
-- SERVICES --
local ReplicatedStorage = game:GetService("ReplicatedStorage")

-- FUNCTIONS --
local ScreenTextAnimation = require(ReplicatedStorage:WaitForChild("ScreenTextAnimation"))

-- CONSTANTS FOR PREVIEW --
local Titles = {
	[[Woah!]],
	[[Made by @InKrnl]],
	[[Untitled]]
}
local Subtexts = {
	[[So cool!! ]],
	[[No Credits Required]],
	[[What is this even called? 🤔]]
}

local Colors = {
	Color3.fromRGB(158, 128, 255),
	Color3.fromRGB(231, 160, 38),
	Color3.fromRGB(231, 92, 92)
}

-- VARIABLES FOR PREVIEW --
local Count = 0

-- PREVIEW LOOP --
while true do
	Count = Count < 3 and Count + 1 or 1

	ScreenTextAnimation(Titles[Count], Subtexts[Count], Colors[Count]) -- Yields
		--[[
			Subtext and Color are optional, if not Subtext is given then it will only show the big text.
		]]

	task.wait(1)
end

How to use

This is a modular function, so to use it is quite simple.
You just need to require it in a variable and call it when needed like if you were calling a function.

local ScreenTextFunction = require(path.to.module) --[[ Store the function ]]
ScreenTextFunction(MyCoolText, Subtext, Color) --[[ Call it like a function when needed ]]
--[[ THE CODE ABOVE IS AN EXAMPLE, IT WON'T WORK IF PASTED AS IS. ]]

License

MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Thanks for the attention!
If this helps you, be sure to leave a heart and follow me on Roblox!
I’ll appreciate it! :sparkling_heart:

yes, this is based on a Youtube text overlay transition animation. :wink:

19 Likes

I’m mind blown, thats sick :exploding_head: I honestly can’t articulate my amazement any better than VCSPlays’s emoji

2 Likes

Woah, that’s very awesome, i like it.
Good job!

1 Like

Amazing resource! Thank you very much for sharing to the community! :slight_smile:

1 Like