Like I want to script it.
EX: I pressed the "Play" button, and it deletes the message.
I know everything, but the ending part. (Last line) I want to know it.
01 | -- Make sure this is in the button |
02 | Gui = Script.Parent.Parent.Parent --LOCATE THE WHOLE GUI HERE |
03 | function OnClick() |
04 | Gui.Visible = false |
05 | end |
06 | script.Parent.MouseButton 1 Click:connect(OnClick) |
07 |
08 | --OR |
09 | Gui = Script.Parent.Parent.Parent --LOCATE THE WHOLE GUI HERE |
10 | function close() |
11 | Gui:destroy() |
12 | end |
13 | script.Parent.MouseButton 1 Down:connect(close) |
14 |
15 | --EITHER OF THEM WORK. YOU ONLY NEED 1. Make sure this is the button's child |