Надеюсь помогло видео
Коментарий лайк подписка
-----------------------------------------------------------------
Ник в роблоксе:LEMIsTOR
легенда
-----------------------------------------------------------------
скрипт: local player = game:GetService("Players").LocalPlayer
local runService = game:GetService("RunService")
-- Ждем появления персонажа
player.CharacterAdded:Connect(function(character)
local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
-- Создаем BillboardGui для текста над головой
local billboardGui = Instance.new("BillboardGui")
billboardGui.Name = "AdminTag"
billboardGui.Size = UDim2.new(0, 200, 0, 80)
billboardGui.StudsOffset = Vector3.new(0, 3, 0) -- Высота над головой
billboardGui.AlwaysOnTop = true
billboardGui.MaxDistance = 100
billboardGui.Parent = humanoidRootPart
-- Фрейм для текста
local frame = Instance.new("Frame")
frame.Size = UDim2.new(1, 0, 1, 0)
frame.BackgroundTransparency = 1
frame.Parent = billboardGui
-- Текст ADMIN
local adminText = Instance.new("TextLabel")
adminText.Name = "AdminText"
adminText.Size = UDim2.new(1, 0, 0.6, 0)
adminText.Position = UDim2.new(0, 0, 0, 0)
adminText.BackgroundTransparency = 1
adminText.Text = "ADMIN"
adminText.TextColor3 = Color3.fromRGB(255, 0, 0)
adminText.TextScaled = true
adminText.Font = Enum.Font.SciFi
adminText.TextStrokeColor3 = Color3.fromRGB(0, 0, 0)
adminText.TextStrokeTransparency = 0
adminText.TextSize = 25
adminText.ZIndex = 2
adminText.Parent = frame
-- Тень текста
local textShadow = Instance.new("TextLabel")
textShadow.Size = UDim2.new(1, 0, 0.6, 0)
textShadow.Position = UDim2.new(0, 2, 0, 2)
textShadow.BackgroundTransparency = 1
textShadow.Text = "ADMIN"
textShadow.TextColor3 = Color3.fromRGB(0, 0, 0)
textShadow.TextScaled = true
textShadow.Font = Enum.Font.SciFi
textShadow.TextTransparency = 0.3
textShadow.TextSize = 25
textShadow.ZIndex = 1
textShadow.Parent = frame
-- Никнейм игрока
local nicknameText = Instance.new("TextLabel")
nicknameText.Name = "NicknameText"
nicknameText.Size = UDim2.new(1, 0, 0.4, 0)
nicknameText.Position = UDim2.new(0, 0, 0.6, 0)
nicknameText.BackgroundTransparency = 1
nicknameText.Text = "LEMIsTOR"
nicknameText.TextColor3 = Color3.fromRGB(255, 255, 255)
nicknameText.TextScaled = true
nicknameText.Font = Enum.Font.GothamBold
nicknameText.TextStrokeColor3 = Color3.fromRGB(0, 0, 0)
nicknameText.TextStrokeTransparency = 0.2
nicknameText.TextSize = 18
nicknameText.ZIndex = 2
nicknameText.Parent = frame
-- Свечение красным
local glow = Instance.new("UIStroke")
glow.Name = "GlowEffect"
glow.Color = Color3.fromRGB(255, 0, 0)
glow.Thickness = 3
glow.Transparency = 0.7
glow.ApplyStrokeMode = Enum.ApplyStrokeMode.Border
glow.Parent = adminText
-- Анимация пульсации
local heartbeatConnection
heartbeatConnection = runService.Heartbeat:Connect(function()
if not character or not character.Parent then
heartbeatConnection:Disconnect()
return
end
local timeValue = os.clock()
-- Пульсация текста
local pulse = math.sin(timeValue * 2) * 0.1 + 1
adminText.TextSize = 25 * pulse
-- Мерцание свечения
local glowIntensity = math.sin(timeValue * 3) * 0.3 + 0.7
glow.Transparency = 0.7 - (glowIntensity * 0.2)
-- Плавное изменение оттенка красного
local hueShift = math.sin(timeValue * 1.5) * 0.1
adminText.TextColor3 = Color3.fromRGB(255, math.floor(30 * hueShift), math.floor(30 * hueShift))
-- Легкое покачивание текста
local sway = math.sin(timeValue * 1.2) * 0.5
billboardGui.StudsOffset = Vector3.new(sway, 3 + math.sin(timeValue * 2) * 0.2, 0)
end)
-- Очистка при смерти персонажа
character:WaitForChild("Humanoid").Died:Connect(function()
billboardGui:Destroy()
if heartbeatConnection then
heartbeatConnection:Disconnect()
end
end)
end)
-- Для уже существующего персонажа
if player.Character then
player.CharacterAdded:Fire(player.Character)
end
print("✅ ADMIN tag over head activated for LEMIsTOR")
теги:
roblox, roblox studio, роблокс, роблокс студио, роблокс студио гайд, shorts, roblox studio tutorial, роблокс студио туториал, как сделать, fgot, фгот, гайд, studio, роблокс студио на телефоне, решение, tutorial, ogonshik, проблема, в роблокс студио, в роблоксе, девлаб, огончик, robloxstudio, дев, огоншик, how to make, labtv, devlab, гайды по роблокс студио 2024, dev, developer, огонщик, in roblox studio, разработчик, devlabtv, роблокс студио 2024, roblox studio plugins, game,Lemistor,Лемистор,обучение от лемистора,LEMIsTOR
Информация по комментариям в разработке