RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"script a text button that opens a frame"
-- local script local textButton = script.Parent local frame = script.Parent.Parent.Frame textButton.MouseButton1Click:Connect(function() if frame.Visible then frame.Visible = false else frame.Visible = true end end)