TextTransparency not updating visually

Hi there,

I have this progress bar GUI, with an ‘XP’ TextLabel that I want to change the TextTransparency of.
image

This is what I am aiming for:
image

However, the following code won’t change the TextTransparency ‘visually’, despite it printing the expected value to the console when I was trying to debug.

shiftResultsSkillLevelXpText.TextTransparency = 1
print(shiftResultsSkillLevelXpText.TextTransparency)

image
^ As seen above the TextTransparency value printed is 1, but what I see visually is still 0.

Any help would be cool, thanks :slight_smile:

If it helps at all, this is the whole code block:

Remotes.GUI.ChangeGuiStatusRemote.OnClientEvent:Connect(function(guiName, showGui, options)
    if guiName == "jobShiftDetails" then
        if showGui then
            shiftResultsSkillLevelXpText.TextTransparency = 1
            print(shiftResultsSkillLevelXpText.TextTransparency)
            updateShiftResultsGui(options)
            GuiServices.ShowGuiStandard(jobShiftResultsContainer, jobShiftResultsContainerVisibleGuiPos, jobShiftResultsContainerVisibleGuiSize, true)
        end
    end
end)
1 Like

Did you double checked explorer?

1 Like