of     1   

XVShadowAssassinXV
#220001496Thursday, June 29, 2017 2:50 AM GMT

Hi all, How do I script it that every 5 minutes a new tips is on the bottom of the screen? I'd have lets say 20 tips stored and it'd randomize every minute and change
XVShadowAssassinXV
#220001732Thursday, June 29, 2017 2:54 AM GMT

Bump
TsunaSenpai
#220002000Thursday, June 29, 2017 2:58 AM GMT

hints = {"HI","HELLO"} while true do wait(300) rand = math.random(1,2) script.Parent.TextLabel.Visible = true script.Parent.Text = hints[rand] wait(3) script.Parent.TextLabel.Visible = false end
TsunaSenpai
#220002044Thursday, June 29, 2017 2:59 AM GMT

Have a screen gui and a textlabel for the hint layout then that script in the screen gui also name the textlabel "TextLabel"
TsunaSenpai
#220002081Thursday, June 29, 2017 2:59 AM GMT

Also leave the textlabel invisible
XVShadowAssassinXV
#220009786Thursday, June 29, 2017 5:16 AM GMT

How to make text label invisible?
1pie23
#220010806Thursday, June 29, 2017 5:37 AM GMT

select it>properties>Visible>false
XVShadowAssassinXV
#220011153Thursday, June 29, 2017 5:44 AM GMT

It doesnt work. It just shows label. I made the background transparency to 1 to make invisible. I added "local" before hints so it becomes a variable..... Also is this correct? ########################
XVShadowAssassinXV
#220011230Thursday, June 29, 2017 5:45 AM GMT

It doesnt work. It just shows label. I made the background transparency to 1 to make invisible. I added "local" before hints so it becomes a variable..... Also is this correct? --> Starter Gui Tips (GUI) Script TextLabel
XVShadowAssassinXV
#220011362Thursday, June 29, 2017 5:47 AM GMT

Tried that too, now nothing shows up.
supersmartnoobguy
#223668801Monday, August 14, 2017 8:26 PM GMT

I can read scripts (I can understand every code) and I must say it is correct,the issue might be in the fact that you've used wrong 'script' format and/or not put the script into the TextLabel.

    of     1