RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a gui that is called project public"
-- local script local player = game:GetService("Players").LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Name = "ProjectPublicGui" screenGui.Parent = player.PlayerGui local textLabel = Instance.new("TextLabel") textLabel.Name = "ProjectPublicLabel" textLabel.Text = "Project Public" textLabel.Size = UDim2.new(0, 200, 0, 50) textLabel.Position = UDim2.new(0.5, -100, 0, 10) textLabel.BackgroundTransparency = 1 textLabel.Font = Enum.Font.SourceSans textLabel.TextSize = 24 textLabel.TextColor3 = Color3.new(1, 1, 1) textLabel.Parent = screenGui