Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make normal GUI dialog?

Asked by 4 years ago

So, I have variant of dialog:

function OnClick()
    script.Parent.Text = "You talking to me?"
    script.Parent.Parent.Parent.Cont.Text = "Wait 4 sec to next msg!"
    wait(4)
    script.Parent.Text = "Oh, im suprised!"
    wait(4)
    script.Parent.Text = "No one has spoken to me for a long time!"
    wait(4)
    script.Parent.Text = "I appreciate it, so..."
    wait(4)
    script.Parent.Text = "To get to the next dimension you need to enter Lava Portal behind me."
    wait(4)
    script.Parent.Text = "Good Luck! Gonna see you in next dimension."
    wait(4)
    script.Parent.Parent.Parent.Visible = false
    end

 script.Parent.MouseButton1Click: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?

0
u can i suppose make a button like next, which when pressed shows the next message hallmk7 50 — 4y
0
yeah, but actually wanted to make click on the chat box< to new message appear GravityGouse99938 75 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

Make a button on the chat box but make it transparent. Now the player will be able to see the text and when they click on the chat box they would click on the button as it is over the box and is transparent. It should be the same size and in the same position as the box

0
oh thanks! GravityGouse99938 75 — 4y
0
Happy To Help!! kingblaze_1000 359 — 4y
Ad

Answer this question