RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"write me a main menu script with gui, add comments to code telling me where to put it in studio"
-- local script placed in StarterPlayerScripts -- Create the main menu GUI local mainMenu = Instance.new("ScreenGui") mainMenu.Parent = game.StarterGui local frame = Instance.new("Frame") frame.Parent = mainMenu frame.Size = UDim2.new(0.5, 0, 0.5, 0) frame.Position = UDim2.new(0.25, 0, 0.25, 0) frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) local textLabel = Instance.new("TextLabel") textLabel.Parent = frame textLabel.Size = UDim2.new(1, 0, 0.5, 0) textLabel.Position = UDim2.new(0, 0, 0, 0) textLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) textLabel.Text = "Main Menu" local playButton = Instance.new("TextButton") playButton.Parent = frame playButton.Size = UDim2.new(1, 0, 0.5, 0) playButton.Position = UDim2.new(0, 0, 0.5, 0) playButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255) playButton.Text = "Play" -- Connect the play button to the function that will start the game local function startGame() -- Code to start the game goes here end playButton.MouseButton1Click:Connect(startGame)