RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a function for a play button"
-- local script local button = script.Parent local function playGame() game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Game Started"; Text = "Enjoy the game!"; }) end button.MouseButton1Click:Connect(playGame)