我是新鲜的,我已尝试了几个小时,我无法改变我把我的 game带进我的游戏中。
这是我的法典,我正试图使所谓的“MenuFrame”框架在 but被点击时具有可见度。
https://i.stack.imgur.com/yXSTG.png”rel=“nofollow noreferer”> GUI is under “StarterGUI”
local button = script.Parent
local menu = script.Parent.Parent.Parent:FindFirstAncestor("MenuFrame")
local function onButtonClicked()
if menu.Visible then
menu.SetAttribute(menu,Visible,false)
else
menu.SetAttribute(menu,Visible,true)
end
end
button.MouseButton1Down:Connect(onButtonClicked)
The error is 7: attempt to index nil with Visible
是否有关于我可以改变或确定什么的建议。