I’m trying to make another gui visible when I click a button but its not working
local button = script.Parent
local statsGui = game.StarterGui.SettingsTab.Frame
button.MouseButton1Click:Connect(function()
print("Should work")
statsGui.Visible = true
print("Worked")
end)