This is how my GUI looks like. The text that I want to have the scroll effect are the 2 text labels on top and bottom (the “ELIMINATE ELIMINATE ELIMINATE” ones).
local function tweenLabel()
script.Parent.TextLabel.Position = UDim2.fromScale(1,0.5)
script.Parent.TextLabel:TweenPosition(UDim2.new(0,-script.Parent.TextLabel.Size.X.Offset,0.5,0),Enum.EasingDirection.InOut, Enum.EasingStyle.Linear, 2, false, tweenLabel)
end
tweenLabel()