RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"black and white background gui"
-- local script local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") local background = Instance.new("Frame") background.Parent = ScreenGui background.Size = UDim2.new(1, 0, 1, 0) background.BackgroundColor3 = Color3.new(0, 0, 0) background.BorderSizePixel = 0 local function changeColor() while true do background.BackgroundColor3 = Color3.new(0, 0, 0) wait(0.5) background.BackgroundColor3 = Color3.new(1, 1, 1) wait(0.5) end end spawn(changeColor)