|
| 10 Sep 2011 05:49 PM |
while true do game.startergui.GuiNameHere.visible true wait (10) game.startergui.GuiNameHere.visible false end end
i want a gui to dissapear after 10 secs |
|
|
| Report Abuse |
|
|
| |
|
|
| 10 Sep 2011 05:50 PM |
| It seems like every new scripter thinks capitalization doesn't matter. |
|
|
| Report Abuse |
|
|
|
| 10 Sep 2011 05:50 PM |
| do you then have any suggestions about how i could make it work cuz im very bad starting a script |
|
|
| Report Abuse |
|
|
|
| 10 Sep 2011 05:51 PM |
| i really dont know how to put the parts of the script together i can do the commands or what you call it but i can't put it together |
|
|
| Report Abuse |
|
|
|
| 10 Sep 2011 05:57 PM |
what about this one then: while true do
game.startergui.GuiNameHere.visible true
wait(10)
game.startergui.GuiNameHere.visible.true
end end |
|
|
| Report Abuse |
|
|
|
| 10 Sep 2011 05:58 PM |
or this: while true do
game.startergui.GuiNameHere.visible true
wait(10)
game.startergui.GuiNameHere.visible.true end end |
|
|
| Report Abuse |
|
|
|
| 10 Sep 2011 06:01 PM |
| well then i'll ask who can fix this script for me? |
|
|
| Report Abuse |
|
|
|
| 10 Sep 2011 06:03 PM |
game.StarterGui.GuiNameHere.visible = true
wait(10)
game.StarterGui.GuiNameHere.visible = false
end end |
|
|
| Report Abuse |
|
|
| |
|