How to add Owner Text Badge on Roblox Studio Easy Method (2026)

Опубликовано: 20 Август 2026
на канале: Gioo
33
6

How to add Owner Text Badge on Roblox Studio Easy Method (2026)
#roblox #robloxfyp #robloxstudio #video

copy this script:

local OWNER_USERNAME = "dakma_9"

game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
if player.Name == OWNER_USERNAME then
local head = character:WaitForChild("Head")

local billboard = Instance.new("BillboardGui")
billboard.Name = "OwnerTag"
billboard.Size = UDim2.new(0, 200, 0, 50)
billboard.StudsOffset = Vector3.new(0, 2.8, 0)
billboard.AlwaysOnTop = true
billboard.Parent = head

local text = Instance.new("TextLabel")
text.Size = UDim2.new(1, 0, 1, 0)
text.BackgroundTransparency = 1
text.Text = "👑 OWNER"
text.TextScaled = true
text.Font = Enum.Font.GothamBold
text.TextColor3 = Color3.fromRGB(255, 215, 0)
text.TextStrokeTransparency = 0
text.TextStrokeColor3 = Color3.new(0, 0, 0)
text.Parent = billboard
end
end)
end)