ScreenshotHud
Show Deprecated
The ScreenshotHud is a 2D user interface that allows users to capture and save screenshots to their local device. It consists of the following UI elements:
- An overlay containing the experience name and Roblox branding. These remain on screen when a screenshot is taken, although the experience name can be disabled through the ScreenshotHud.ExperienceNameOverlayEnabled property.
- A camera button that hides all UI except for the overlay and takes a screenshot.
- A close button that closes the ScreenshotHud.
Code Samples
LocalScript
local GuiService = game:GetService("GuiService")
local screenshotHud = GuiService:WaitForChild("ScreenshotHud")
screenshotHud.ExperienceNameOverlayEnabled = true
screenshotHud.OverlayFont = Enum.Font.GothamMedium
screenshotHud.Visible = true
Summary
Properties
Asset ID of the icon used for the camera button.
Screen location of the camera button.
Screen location of the close button.
Whether the ScreenshotHud closes automatically when a screenshot is taken.
Determines whether the ScreenshotHud is visible.
Properties
CameraButtonIcon
ContentId
Asset ID of the icon used for the camera button.
CloseWhenScreenshotTaken
Determines whether the ScreenshotHud closes automatically when a screenshot is taken.