RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"White background with 1 button"
-- 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(255, 255, 255) local button = Instance.new("TextButton", background) button.Text = "Button" button.TextColor3 = Color3.fromRGB(0, 0, 0) button.BackgroundColor3 = Color3.fromRGB(255, 255, 255) button.Position = UDim2.new(0.5, -50, 0.5, -25) button.Size = UDim2.new(0, 100, 0, 50) button.AnchorPoint = Vector2.new(0.5, 0.5)