Как сделать теги для разработчиков в Roblox Studio? [17 урок]
Автор: Tutor Roblox Studio 1234
Загружено: 2025-09-19
Просмотров: 19
Описание:
local roles = {
["fpstrhrujr4yt"] = {Title = "СОЗДАТЕЛЬ", Color = Color3.fromRGB(255, 0, 0)}, -- Красный цвет
["2"] = {Title = "АДМИН", Color = Color3.fromRGB(0, 0, 255)}, -- Синий цвет
["1"] = {Title = "МОДЕРАТОР", Color = Color3.fromRGB(0, 255, 0)} -- Зелёный цвет
}
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
if roles[player.Name] then
local head = character:FindFirstChild("Head")
if head then
local billboard = Instance.new("BillboardGui")
billboard.Parent = head
billboard.Size = UDim2.new(4, 0, 1, 0)
billboard.StudsOffset = Vector3.new(0, 2, 0)
billboard.AlwaysOnTop = true
local textLabel = Instance.new("TextLabel")
textLabel.Parent = billboard
textLabel.Size = UDim2.new(1, 0, 1, 0)
textLabel.BackgroundTransparency = 1
textLabel.Text = "[" .. roles[player.Name].Title .. "] " .. player.Name
textLabel.TextColor3 = roles[player.Name].Color
textLabel.TextScaled = true
textLabel.Font = Enum.Font.SourceSansBold
end
end
end)
end)
Повторяем попытку...
![Как сделать теги для разработчиков в Roblox Studio? [17 урок]](https://ricktube.ru/thumbnail/lP3pdpwhEJQ/hq720.jpg)
Доступные форматы для скачивания:
Скачать видео
-
Информация по загрузке: