RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"black and white background gui"
-- local script local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui Frame.Parent = ScreenGui Frame.Size = UDim2.new(1, 0, 1, 0) Frame.BackgroundColor3 = Color3.fromRGB(128, 128, 128) Frame.BorderSizePixel = 0 local function createStripe(position, color) local stripe = Instance.new("Frame") stripe.Parent = Frame stripe.Size = UDim2.new(0.1, 0, 1, 0) stripe.Position = UDim2.new(position, 0, 0, 0) stripe.BackgroundColor3 = color stripe.BorderSizePixel = 0 end for i = 0, 9 do local color = (i % 2 == 0) and Color3.fromRGB(0, 0, 0) or Color3.fromRGB(255, 255, 255) createStripe(i * 0.1, color) end