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:
- Go to the top-left of your screen and find the menu
- Click on the button that has three horizontal lines stacked on top of each other (the one that is circled in red)
-
Click on the “Captures” button (circled in red)
-
The button should now be hidden.