How do I make normal GUI dialog?
So, I have variant of dialog:
02 | script.Parent.Text = "You talking to me?" |
03 | script.Parent.Parent.Parent.Cont.Text = "Wait 4 sec to next msg!" |
05 | script.Parent.Text = "Oh, im suprised!" |
07 | script.Parent.Text = "No one has spoken to me for a long time!" |
09 | script.Parent.Text = "I appreciate it, so..." |
11 | script.Parent.Text = "To get to the next dimension you need to enter Lava Portal behind me." |
13 | script.Parent.Text = "Good Luck! Gonna see you in next dimension." |
15 | script.Parent.Parent.Parent.Visible = false |
18 | script.Parent.MouseButton 1 Click:Connect(OnClick) |
But its pretty bad. I want to make so, next message will be on click, so you don't have to wait 4 seconds, but how do I do that?