RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"script a text button that opens a frame inside screen gui"
-- LocalScript inside the TextButton local textButton = script.Parent local frame = textButton.Parent.Frame local function toggleFrame() frame.Visible = not frame.Visible end textButton.MouseButton1Click:Connect(toggleFrame)