Answered by
4 years ago Edited 4 years ago
heya buddy! I wanna try to help you, so let me explain. Define you Gui into variables
1 | local intermissionGui = “your intermission gui” |
2 | local roundStatsGui = “your round stats Gui” |
then we’ll make it that if one of the two gui is open, the other will close. Like this
1 | local intermissionGui = “your intermission gui” |
2 | local roundStatsGui = “your round stats Gui” |
4 | if intermissionGui.Visible = = true then |
5 | roundStatsGui.Visible = false |
6 | elseif roundStatsGui.Visible = = true then |
7 | intermissionGui.Visible = false |
I’m here to only help you about the Gui being visible or not on certain times like what you said, “when intermission is going on my GUI signaling intermission has to visible why'll the round GUI with the round stats would be invisible and visa versa. How would I do this?“
. In making the Intermission itself or the round, you should learn about it more to get knowledge. Well that’s all from me! Hope this Helps!