Create a code in lua for roblox that makes every gui in the game invisible after pressing the button
import lua code = """ local gui = game:GetService("CoreGui") local button = script.Parent button.MouseButton1Click:Connect(function() for i, v in pairs(gui:GetChildren()) do v.Visible = false end end) """ output = lua.execute(code) print(output)