local a=game:GetService("Players")local b=game:GetService("Workspace")local c=game:GetService("RunService")local d=8561740;local e=Color3.fromRGB(255,255,255)local f=40;local g=99999999999999999;local function h(i,j)local k=i:FindFirstChild("Head")if not k then return end;for l,m in i:GetChildren()do if m:IsA("BillboardGui")and m.Name=="ShirtNameTag"then m:Destroy()end end;local n=Instance.new("BillboardGui")n.Name="ShirtNameTag"n.Adornee=k;n.Size=UDim2.new(0,200,0,50)n.StudsOffset=Vector3.new(0,3.2,0)n.AlwaysOnTop=true;n.LightInfluence=0;n.MaxDistance=g;n.Parent=i;local o=Instance.new("TextLabel")o.Size=UDim2.new(1,0,1,0)o.BackgroundTransparency=1;o.Text=j;o.TextColor3=e;o.TextStrokeTransparency=0.6;o.TextStrokeColor3=Color3.new(0,0,0)o.Font=Enum.Font.Arimo;o.TextSize=f;o.TextScaled=false;o.Parent=n end;local function p(i)if not i:IsDescendantOf(b)then return end;local q=i:FindFirstChildOfClass("Shirt")if not q then return end;local r=tonumber(q.ShirtTemplate:match("id=(%d+)"))if r==d then local s=i.Name;print("[Shirt Detected]",s,"is wearing shirt",d)h(i,s)end end;local function t()for l,u in ipairs(b:GetDescendants())do if u:IsA("Model")then local v=u:FindFirstChildOfClass("Humanoid")if v and v.Health>0 then p(u)end end end end;t()b.DescendantAdded:Connect(function(w)if w:IsA("Model")then local v=w:WaitForChild("Humanoid",5)if v then task.wait(0.5)p(w)end end end)c.Heartbeat:Connect(function()if tick()%10<0.05 then t()end end)print("retrostudio script ")