Hi there,
I have this progress bar GUI, with an ‘XP’ TextLabel that I want to change the TextTransparency of.
This is what I am aiming for:
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)
^ As seen above the TextTransparency value printed is 1, but what I see visually is still 0.
Any help would be cool, thanks
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)