How do I remove this "screenshot" button?

How do I remove this button? It’s in such an unfortunate place. I think it’s a corebutton or something but I really want it removed. Please help.
image

Hamburger Button > Capture

annoying as hell, but that’s the only way you can disable it.

2 Likes

I even tried to remove it, just because of the event the capture button shows on the screen which blocks the view kinda, but it gives me quite distracting, pretty sure unless the event ends it would be gone.

go the the 3 line button beside the roblox icon and press the camera

1 Like

You can manually disable the capture button with a local script. Just
know that doing it this way doesn’t let the player toggle the button unless you manually allow it again.

local StarterGui = game:GetService("StarterGui")

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

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.