RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a 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(255, 255, 255) local textLabel = Instance.new("TextLabel", background) textLabel.Text = "Hello, World!" textLabel.TextColor3 = Color3.fromRGB(0, 0, 0) textLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) textLabel.Size = UDim2.new(0, 200, 0, 50) textLabel.Position = UDim2.new(0.5, -100, 0.5, -25) textLabel.Font = Enum.Font.SourceSansBold textLabel.TextSize = 24