Need some help with position of TextLabel

Greetings fellow developer!

I’m here today to ask you if you know any good guide on how the position in textlabels works. I need to make the text label on my overheadui go over the limit on the number.

Like I can’t make it over 1 and not under -1, I don’t understand this, help would be appreciated.

Here is my script btw.

					Name = "RankLabel",
					BackgroundTransparency = 1,
					Size = UDim2.new(1, 0, 1, 0),
					Position = UDim2.new(0, 0, 0.0001, 0),
					TextTransparency = .1,
					Font = "SourceSans",
					FontSize = Enum.FontSize.Size14,
					Text = rankDivision2,
					TextColor3 = myColor3,
					TextScaled = true,
					TextStrokeTransparency = 1``` 

--It's not only this, and it works now but not if I go over the number stated above.

UDim2 takes scaleX, offsetX, scaleY, offsetY

Scale means percentage of the width/height of the frame it’s in. 0.2, 0, 0.2, 0 means 20% the size across both x and y axes. You can use the other 2 numbers if you want to do offsets which are measured in pixels, but it’s not recommended as it’s non-responsive.