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

Can someone fix this script?

Asked by 11 years ago

It wont work, is there a problem?? Could somebody help??

01function hai()
02Script.Parent.Frame.Visible = true
03end
04function bai()
05Script.Parent.Frame.Visible = false
06end
07 
08script.Parent.MouseEnter:connect(hai)
09 
10script.Parent.MouseLeave:connect(bai)

2 answers

Log in to vote
0
Answered by 11 years ago

'Script' should be in lowercase

0
Didn't work Wrongmistake 0 — 11y
0
Is the frame's active property set to true? lowvillan 10 — 11y
Ad
Log in to vote
0
Answered by 11 years ago

Make sure the GUI's properties are set to Active = true

1script.Parent.MouseEnter:connect(function hai()
2Script.Parent.Frame.Visible = true
3end)
4script.Parent.MouseLeave:connect(function bai()
5Script.Parent.Frame.Visible = false
6end)

Answer this question