RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"black and white background gui"
-- local script (StarterGUI) local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui", player.PlayerGui) local background = Instance.new("Frame", screenGui) background.BackgroundColor3 = Color3.fromRGB(0, 0, 0) local whiteFrame = Instance.new("Frame", background) whiteFrame.Size = UDim2.new(0.8, 0, 0.8, 0) whiteFrame.Position = UDim2.new(0.1, 0, 0.1, 0) whiteFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)