I’m not really into user interface so I don’t really know how to solve this problem. The issue is that my texts in my text label keep shaking every time a text would change. What I want is for the text to be completely still.
This happens because each number has a different width, to solve it you can divide the TexLabel and separate the text, something like this
Script
Frame = script.Parent.Frame
local TextParts = {Frame.TextPart1, Frame.TextPart2, Frame.TextPart3}
function Div(Text_complete:string)
for Index, Text in pairs(Text_complete:split(":")) do
TextParts[Index].Text = Text
end
end