It wont work, is there a problem?? Could somebody help??
function hai() Script.Parent.Frame.Visible = true end function bai() Script.Parent.Frame.Visible = false end script.Parent.MouseEnter:connect(hai) script.Parent.MouseLeave:connect(bai)
'Script' should be in lowercase
Make sure the GUI's properties are set to Active = true
script.Parent.MouseEnter:connect(function hai() Script.Parent.Frame.Visible = true end) script.Parent.MouseLeave:connect(function bai() Script.Parent.Frame.Visible = false end)