Why is this script not going through all of its lines?
Asked by
8 years ago Edited 8 years ago
I have a script here that basically is a intro, There is this one part of it that is suppose to have its transparency go from 1 to 0, But after it goes from 1 to 0 it doesn't go through its lines, From a previous question I asked I assumed it is because I didn't lower the transparency correctly so here is the script:
01 | local textLabel = Instance.new( "TextLabel" ) |
02 | textLabel.Parent = screenGui |
03 | textLabel.Position = UDim 2. new( 0 , 700 , 0 , 350 ) |
04 | textLabel.Size = UDim 2. new( 0 , 150 , 0 , 50 ) |
05 | textLabel.BackgroundColor 3 = BrickColor.White().Color |
06 | textLabel.Text = "Roogle" |
07 | textLabel.Font = "Legacy" |
08 | textLabel.FontSize = 14 |
09 | textLabel.BackgroundTransparency = 1 |
10 | textLabel.TextColor 3 = BrickColor.Red().Color |
13 | textLabel.TextTransparency = a |
16 | until textLabel.TextTransparency = = 0 |
At the Roogle part is where the transparency goes to 0 but doesn't delete itself, A previous question I asked about making the FontSize go up he gave me this
1 | for i, v in ipairs (Enum.FontSize:GetEnumItems()) do |
5 | if v = = Enum.FontSize.Size 14 then break end |
Before you tell me it is a FontSize
not Transparency
I did change everything to Transparency
Enum.TextTransparency.Size0
and all of that but it still didn't work, It didn't tell me anything in the system, It didn't tell me anything was wrong so I can't help you guys there.