RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make me a script where if you press a button a frame appears from starter gui"
-- local script local player = game.Players.LocalPlayer local button = script.Parent local frame = player.PlayerGui.StarterGui.Frame button.MouseButton1Click:Connect(function() frame.Visible = not frame.Visible end)