I read some other forums on this issue and tried them myself. It didn’t solve the issue for me so I am wondering if I did something wrong here.
local TweenService = game:GetService("TweenService")
GroupLogo = script.Parent
wait(10)
local ResizeInfo = TweenInfo.new(
1, -- Length
Enum.EasingStyle.Quart, -- Easing Style
Enum.EasingDirection.Out, -- Easing Direction
0, -- Times repeated
false, -- Reverse
0 -- Delay
)
local ResizeGoal =
{
['Size'] = {0, 250},{0, 250};
}
ResizeTween = TweenService:Create(GroupLogo,ResizeInfo,ResizeGoal)
ResizeTween:Play()
local SpinInfo = TweenInfo.new(
1, -- Length
Enum.EasingStyle.Quart, -- Easing Style
Enum.EasingDirection.Out, -- Easing Direction
0, -- Times repeated
false, -- Reverse
0 -- Delay
)
local SpinGoal =
{
['Rotation'] = 360;
}
SpinTween = TweenService:Create(GroupLogo,SpinInfo,SpinGoal)
SpinTween:Play()
local RemoveLabelInfo = TweenInfo.new(
0.5, -- Length
Enum.EasingStyle.Sine, -- Easing Style
Enum.EasingDirection.InOut, -- Easing Direction
0, -- Times repeated
false, -- Reverse
5 -- Delay
)
local RemoveLabelGoal =
{
['ImageTransparency'] = 1;
}
RemoveLabelTween = TweenService:Create(GroupLogo,RemoveLabelInfo,RemoveLabelGoal)
RemoveLabelTween:Play()