--To start, I have been ofline for the better part of 9 months, I missed the rthro update and probably several more so the most likely reason this script isn't working is its just out dated but if someone could explain the issue as I have several different menu buttons and shop buttons ill need to update. Also, I am in no way an expert with LUA, everything I know is self taught so most terms other players may recognize, I may not. Finally, this script is meant to run a GUI menu, button is clickable but the script is dead, no response on click at all. Please and thank you.
local frame = script.Parent.Parent.Frame script.Parent.MouseButton1Click:connect(function() if frame.Visible == false then frame.Visible = true else frame.Visible = false end end)