local BBGUI = game.ServerStorage.BillboardGui local GID = 6209170 game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) if player.Team == "Inmate" then local CGUI = BBGUI:Clone() CGUI.TextLabel.Text = player.Name.."\n".."Inmate" CGUI.Parent = game.Workspace:WaitForChild(player.Name).Head elseif player.Team == "[CLASSIFIED]" then local CGUI = BBGUI:Clone() CGUI.TextLabel.Text = "[CLASSIFIED]".."\n"..player:GetRankInGroup(GID) CGUI.Parent = game.Workspace:WaitForChild(player.Name).Head end end)
Where do I need to put my end?
14 CGUI.Parent = game.Workspace:WaitForChild(player.Name).Head 15 end 16 end) 17 end)
hope this'll work