01 | local open = false |
02 | local db = true |
03 |
04 | script.Parent.Parent.TextButton.MouseButton 1 Click:connect( function () |
05 | script.Parent.Question.Text = "ARE YOU SURE YOU WANT TO BE REBORN?" |
06 | if not open then |
07 | script.Parent.Visible = true |
08 | open = true |
09 | else |
10 | script.Parent.Visible = false |
11 | open = false |
12 | end |
13 | end ) |
14 |
15 |