I'm trying to make text in the StarterGUI appear after the push of a button.
Anyone see something wrong?
function onClicked()
game.StarterGui.Test.TextLabel.TextTransparency = 0
game(3)
game.StarterGui.Test.TextLabel.TextTransparency = 1
end
script.Parent.ClickDetector.MouseClick:connect(onClicked)
|