It wont work, is there a problem?? Could somebody help??
01 | function hai() |
02 | Script.Parent.Frame.Visible = true |
03 | end |
04 | function bai() |
05 | Script.Parent.Frame.Visible = false |
06 | end |
07 |
08 | script.Parent.MouseEnter:connect(hai) |
09 |
10 | script.Parent.MouseLeave:connect(bai) |
'Script' should be in lowercase
Make sure the GUI's properties are set to Active = true
1 | script.Parent.MouseEnter:connect( function hai() |
2 | Script.Parent.Frame.Visible = true |
3 | end ) |
4 | script.Parent.MouseLeave:connect( function bai() |
5 | Script.Parent.Frame.Visible = false |
6 | end ) |