EDIT: I got it to work
This script just makes the text of the GUI fade in but for some reason it's not working and I'm pretty stumped at this point because I just started working with GUIs
local Trans = script.parent.lastOne.TextTransparency local Trans2 = script.parent.lastOne.TextStrokeTransparency for i = 1, 0, -.05 do Trans = i Trans2 = i wait(0.5) end
I feel like it's very simple but I'm missing something. Any suggestions?