of     1   

Crimling
#228248081Thursday, November 30, 2017 2:39 AM GMT

How do I make something transparent when the game loads, but after five seconds make it not transparent? I know this is probably very simple but I'm complete garbage at scripting. I thought this would work: game.workspace.part.transparency = 1 wait(5) game.workspace.part.transparency = 0 But this doesn't seem to work. What's wrong?
ahmed2772
#228259849Thursday, November 30, 2017 1:26 PM GMT

it worked for me capital letters really matter in lua here it is: game.Workspace.Part.Transparency = 1 wait(5) game.Workspace.Part.Transparency = 0

    of     1