How to remove the new screenshot button from your Roblox game

This is a quick and easy tutorial on how to remove the new and annoying screenshot button from your Roblox game.

local StarterGui = game:GetService("StarterGui")

StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Captures, false)

Just copy and paste this line of code into of a LocalScript inside of the StarterGui and that’s it. Roblox made it possible to disable the screenshot button using SetCoreGuiEnabled.

Here’s how you can disable the screenshot button from games that currently have it enabled:

  1. Go to the top-left of your screen and find the menu

Capture(1)

  1. Click on the button that has three horizontal lines stacked on top of each other (the one that is circled in red)

Capture(2)

  1. Click on the “Captures” button (circled in red)

  2. The button should now be hidden.

8 Likes

ngl this button is really annoying, thank you tho