RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Make a GUI that the background is black"
-- local script local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Parent = player.PlayerGui screenGui.Name = "MyGui" local background = Instance.new("Frame") background.Parent = screenGui background.BackgroundColor3 = Color3.fromRGB(0, 0, 0) background.Size = UDim2.new(1, 0, 1, 0)