i wanted to make a simple loading script for my game, like the letters will appear from above and slowly will become visible
local Tween = game:GetService("TweenService")
local info = TweenInfo.new(0.8, 8)
local targetPosition = UDim2.new(0.34, 0, 0.349, 0)
local goal = {TextTransparency = 0}
local L = script.Parent.L
local O = script.Parent.O
local A = script.Parent.A
local D = script.Parent.D
local I = script.Parent.I
local N = script.Parent.N
local G = script.Parent.G
-- // tweens
local LAppear = Tween:Create(L, info, {Position = targetPosition})
local LVisible = Tween:Create(L, info, goal)
wait(2)
LVisible:Play() -- it doesnt appear
LAppear:Play()