RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a script that gives a player title over their head saying Beta with red color"
-- local script local player = game:GetService("Players").LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local billboardGui = Instance.new("BillboardGui") billboardGui.Adornee = character.Head billboardGui.Size = UDim2.new(0, 100, 0, 50) billboardGui.StudsOffset = Vector3.new(0, 2, 0) billboardGui.Parent = character.Head local titleLabel = Instance.new("TextLabel") titleLabel.Size = UDim2.new(1, 0, 1, 0) titleLabel.BackgroundTransparency = 1 titleLabel.Text = "Beta" titleLabel.TextColor3 = Color3.fromRGB(255, 0, 0) titleLabel.Font = Enum.Font.SourceSansBold titleLabel.TextScaled = true titleLabel.Parent = billboardGui