Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

New to GUIs, can't quite get this script make the GUI fade in/fade out? *SOLVED*

Asked by 6 years ago
Edited 6 years ago

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?

0
Not much i would know how to do other than setting the transperency of the frame and text all at the same time then at the end setting it to visible = false Sergiomontani10 236 — 6y

Answer this question